iphone sdk:如何隐藏 UITabBarController 中的 tabBar?

发布于 2024-09-26 03:50:38 字数 121 浏览 1 评论 0原文

我的应用程序由一个选项卡控制器组成,里面有多个导航控制器。现在我想从一开始就隐藏 tabbarcontroller 的底部栏,因为底部栏上的按钮会导致应用程序内的功能尚未准备好,所以我不希望用户看到它们。我该怎么做? 提前致谢!

My application consists out of a tabbarcontroller and inside i got multiple navigationControllers. Now i want to hide the bottom bar of the tabbarcontroller from the start because the buttons on the bottom bar lead to features inside the application which are just not ready yet so i dont't want the user to see them. How do i do this?
Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

臻嫒无言 2024-10-03 03:50:38

有几个选项:

  • 在导航控制器中的一个控制器上设置 hidesBottomBarWhenPushed=YES。我不确定这是否适用于导航控制器的根视图控制器。
  • 通过更改 UITabBarController.viewControllers 隐藏选项卡栏项目。我不确定它是否可以让您拥有一个只有一个选项卡的选项卡栏,但它应该可以。
  • 设置选项卡栏控制器的委托(请参阅 UITabBarControllerDelegate)。 --tabBarController:shouldSelectViewController:中,如果尚未实现则返回NO。

A couple of options:

  • Set hidesBottomBarWhenPushed=YES on one of the controllers in your navigation controller. I'm not sure if this works on the root view controller of a navigation controller.
  • Hide the tab bar items by changing UITabBarController.viewControllers. I'm not sure if it lets you have a tab bar with only one tab, but it ought to.
  • Set the tab bar controller's delegate (see UITabBarControllerDelegate). In – tabBarController:shouldSelectViewController:, return NO if it hasn't been implemented yet.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文