如何在tabbarconmtroller应用程序中删除/隐藏tabbar?

时间:2010-12-19 16:55:29

标签: objective-c

在我的tabbarcontroller应用程序中有四个小节,每个tabbar都有viewcontroller里面的navigationcontroller。我应该如何为横向方向的特定选项卡隐藏特定的标签栏?

1 个答案:

答案 0 :(得分:2)

要在将新的viewController推送到导航堆栈时隐藏TabBar,只需将此代码添加到该viewController的init方法中:

self.hidesBottomBarWhenPushed = YES;