Commit 749011ebb4ee03cf7b7c84b1aeb3ecb270e1ca09

Authored by iOS-Xiaowen
1 parent 2bf9847a

no message

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 }
... ...