Commit b91440a1689a1abc795bb0ca61274724a13364f4

Authored by iOS-Xiaowen
1 parent 2b3cb92d

no message

CNLiveBMineModule/Classes/Module/CNLiveBMineService.m
... ... @@ -27,6 +27,8 @@
27 27  
28 28 - (void)pushToMineViewController {
29 29 CNLiveMineController *vc = [[CNLiveMineController alloc]init];
  30 + vc.modalPresentationStyle = UIModalPresentationOverFullScreen;
  31 + vc.hidesBottomBarWhenPushed = YES;
30 32 [CNLivePageJumpManager pushViewController:vc];
31 33 }
32 34  
... ... @@ -37,6 +39,8 @@
37 39  
38 40 - (void)pushToUserInfoViewController {
39 41 CNLiveUserInfoController *vc = [[CNLiveUserInfoController alloc]init];
  42 + vc.modalPresentationStyle = UIModalPresentationOverFullScreen;
  43 + vc.hidesBottomBarWhenPushed = YES;
40 44 [CNLivePageJumpManager pushViewController:vc];
41 45 }
42 46  
... ...