0
我有根視圖,在開始時可以看到標籤欄和導航欄。當視圖移動到下一層時,我想隱藏標籤欄,當視圖移回時,我希望標籤欄可見。有沒有辦法做到這一點?隱藏UITabBarController?
我有根視圖,在開始時可以看到標籤欄和導航欄。當視圖移動到下一層時,我想隱藏標籤欄,當視圖移回時,我希望標籤欄可見。有沒有辦法做到這一點?隱藏UITabBarController?
如果您使用UINavigationController來執行推送,您可以沿這些行使用某些內容。
[newController setHidesBottomBarWhenPushed:YES];
[self.navigationController push...newController animated:YES];