iphone sdk:如何隐藏 UITabBarController 中的 tabBar?
我的应用程序由一个选项卡控制器组成,里面有多个导航控制器。现在我想从一开始就隐藏 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有几个选项:
--tabBarController:shouldSelectViewController:
中,如果尚未实现则返回NO。A couple of options:
– tabBarController:shouldSelectViewController:
, return NO if it hasn't been implemented yet.