UINavigationController - 不希望它出现在 iPhone 的首页

发布于 2024-09-30 15:02:31 字数 104 浏览 2 评论 0原文

我将使用 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 技术交流群。

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

发布评论

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

评论(1

野稚 2024-10-07 15:02:31

当然,当您想要隐藏它然后再次使用它来显示它时,您可以在导航控制器上使用 - (void)setNavigationBarHidden:(BOOL)hiddenanimated:(BOOL)animated

因此,如果您所在的视图控制器是 UINavigationController 的根,您可能需要在 viewWillAppear: 方法中调用它:

[self.navigationController setNavigationBarHidden:YES animated:NO];

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:

[self.navigationController setNavigationBarHidden:YES animated:NO];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文