UINavigationController - 不希望它出现在 iPhone 的首页
我将使用 UINavigationController 来跟踪用户访问的所有视图。这一切都很好,只是我不希望导航栏出现在第一个视图上。是否可以在第一个视图中不显示导航栏?
谢谢!
I am going to use an UINavigationController to keep track of all the views the user visits. This is all well and good except that I do not want the navigation bar to appear on the first view. Is it possible not to show the navigation bar on the first view?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,当您想要隐藏它然后再次使用它来显示它时,您可以在导航控制器上使用
- (void)setNavigationBarHidden:(BOOL)hiddenanimated:(BOOL)animated
。因此,如果您所在的视图控制器是 UINavigationController 的根,您可能需要在
viewWillAppear:
方法中调用它:sure, you can use
- (void)setNavigationBarHidden:(BOOL)hidden animated:(BOOL)animated
on the navigation controller, when you want to hide it and then use it again to display it.so if you are on a view controller that is the root for the UINavigationController, you might want to call it in the
viewWillAppear:
method: