在Landscape中顯示另一個視圖,同時隱藏Tabbar。創建了一個新視圖,只改變了self.view
self.hidesBottomBarWhenPushed = YES;
但是沒實現。請大家幫忙。
在viewWillAppear
中添加這行代碼: 隱藏你的試圖UITabBar的方法
[self.tabBarController.tabBar setHidden:YES];
補充:
設置一個作為RootViewController
的新視圖,用下面的代碼:
YourNewViewController *objView = [[YourNewViewController alloc] initWithNibName:@"YourNewViewController" bundle:nil];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:objView];
[self presentModalViewController:nav animated:YES];