标签: objective-c
在我的tabbarcontroller应用程序中有四个小节,每个tabbar都有viewcontroller里面的navigationcontroller。我应该如何为横向方向的特定选项卡隐藏特定的标签栏?
答案 0 :(得分:2)
要在将新的viewController推送到导航堆栈时隐藏TabBar,只需将此代码添加到该viewController的init方法中:
self.hidesBottomBarWhenPushed = YES;