Iphone UItabbarcontroller隐藏问题

时间:2011-01-24 10:43:00

标签: ios4

我创建了一个iphone应用程序。我使用了我的mainwindow.nib tab barcontroller并在tabbar中设置了五个导航控制器。当我的应用程序启动然后打开第一页的名称(主页)。我想隐藏tabbarController只有这个页面。

提前致谢

我完成了一些编码。在委托文件上。

// Add the tab bar controller's current view as a subview of the window

[window addSubview:tabBarController.view];

1 个答案:

答案 0 :(得分:0)

尝试使用此行:

[self setHidesBottomBarWhenPushed:YES];

这将隐藏底栏,即标签栏。