Commit 749011ebb4ee03cf7b7c84b1aeb3ecb270e1ca09
1 parent
2bf9847a
no message
Showing
1 changed file
with
3 additions
and
1 deletions
CNLiveBMineModule/Classes/Controller/CNLiveMineController.m
| ... | ... | @@ -138,7 +138,9 @@ static const CGFloat timeValue = 1.5; |
| 138 | 138 | case CNLiveMineHeaderViewTypeHome: |
| 139 | 139 | { |
| 140 | 140 | id<CNLiveHomePageProtocol> service = [[BeeHive shareInstance] createService:@protocol(CNLiveHomePageProtocol)]; |
| 141 | - [service pushLiveHomePageViewController]; | |
| 141 | + UIViewController *vc = [service pushLiveHomePageViewController]; | |
| 142 | + vc.hidesBottomBarWhenPushed = YES; | |
| 143 | + [self.navigationController pushViewController:vc animated:YES]; | |
| 142 | 144 | } |
| 143 | 145 | break; |
| 144 | 146 | } | ... | ... |