Commit 13da5bafe3fb4d8d136db9eafeecf61c58f0ad6e
1 parent
a6a276a0
no message
Showing
2 changed files
with
5 additions
and
3 deletions
CNLiveMineModule/Classes/Module/CNLiveMineService.m
| ... | ... | @@ -8,6 +8,8 @@ |
| 8 | 8 | |
| 9 | 9 | #import "CNLiveMineService.h" |
| 10 | 10 | #import "CNLiveServices.h" |
| 11 | +#import "CNLivePageJumpManager.h" | |
| 12 | + | |
| 11 | 13 | #import "CNLiveMineController.h" |
| 12 | 14 | #import "CNLiveUserInfoController.h" |
| 13 | 15 | |
| ... | ... | @@ -25,7 +27,7 @@ |
| 25 | 27 | |
| 26 | 28 | - (void)pushToMineViewController { |
| 27 | 29 | CNLiveMineController *vc = [[CNLiveMineController alloc]init]; |
| 28 | -// [CNLivePageJumpManager pushViewController:vc]; | |
| 30 | + [CNLivePageJumpManager pushViewController:vc]; | |
| 29 | 31 | } |
| 30 | 32 | |
| 31 | 33 | // 个人资料 |
| ... | ... | @@ -35,7 +37,7 @@ |
| 35 | 37 | |
| 36 | 38 | - (void)pushToUserInfoViewController { |
| 37 | 39 | CNLiveUserInfoController *vc = [[CNLiveUserInfoController alloc]init]; |
| 38 | -// [CNLivePageJumpManager pushViewController:vc]; | |
| 40 | + [CNLivePageJumpManager pushViewController:vc]; | |
| 39 | 41 | } |
| 40 | 42 | |
| 41 | 43 | ... | ... |
Example/CNLiveMineModule/CNLIVEAppDelegate.m
| ... | ... | @@ -30,7 +30,7 @@ |
| 30 | 30 | [CNUserInfoManager saveUserinfoDic:@{ |
| 31 | 31 | @"bigFaceUrl":@"http://yweb0.cnliveimg.com/images/headImg/2019/1030/1572439148697.jpg", |
| 32 | 32 | @"countryCode":@"86", |
| 33 | - @"email":@"", | |
| 33 | + @"email":@"zhangxiaowen@cnlive.cn", | |
| 34 | 34 | @"extInfo":@"", |
| 35 | 35 | @"faceUrl":@"http://yweb0.cnliveimg.com/images/headImg/2019/1030/1572439148697_small.jpg", |
| 36 | 36 | @"gender":@"m", | ... | ... |