Commit b91440a1689a1abc795bb0ca61274724a13364f4
1 parent
2b3cb92d
no message
Showing
1 changed file
with
4 additions
and
0 deletions
CNLiveBMineModule/Classes/Module/CNLiveBMineService.m
| @@ -27,6 +27,8 @@ | @@ -27,6 +27,8 @@ | ||
| 27 | 27 | ||
| 28 | - (void)pushToMineViewController { | 28 | - (void)pushToMineViewController { |
| 29 | CNLiveMineController *vc = [[CNLiveMineController alloc]init]; | 29 | CNLiveMineController *vc = [[CNLiveMineController alloc]init]; |
| 30 | + vc.modalPresentationStyle = UIModalPresentationOverFullScreen; | ||
| 31 | + vc.hidesBottomBarWhenPushed = YES; | ||
| 30 | [CNLivePageJumpManager pushViewController:vc]; | 32 | [CNLivePageJumpManager pushViewController:vc]; |
| 31 | } | 33 | } |
| 32 | 34 | ||
| @@ -37,6 +39,8 @@ | @@ -37,6 +39,8 @@ | ||
| 37 | 39 | ||
| 38 | - (void)pushToUserInfoViewController { | 40 | - (void)pushToUserInfoViewController { |
| 39 | CNLiveUserInfoController *vc = [[CNLiveUserInfoController alloc]init]; | 41 | CNLiveUserInfoController *vc = [[CNLiveUserInfoController alloc]init]; |
| 42 | + vc.modalPresentationStyle = UIModalPresentationOverFullScreen; | ||
| 43 | + vc.hidesBottomBarWhenPushed = YES; | ||
| 40 | [CNLivePageJumpManager pushViewController:vc]; | 44 | [CNLivePageJumpManager pushViewController:vc]; |
| 41 | } | 45 | } |
| 42 | 46 |