选择标签栏时 iPhone 弹出导航控制器

发布于 2024-10-07 10:41:42 字数 153 浏览 1 评论 0原文

我有一个带有选项卡栏的 iPhone 应用程序,第一个选项卡中有一个 UINavigationController。选择选项卡时如何强制导航控制器 popToRoot ?默认行为会在您第二次选择它时执行此操作,但我希望在第一次选择时执行此操作。

谢谢

I have an iPhone app with a tab bar and in the first tab there is a UINavigationController. How can I force the navigation controller to popToRoot when selecting the tab? The default behaviour does this the second time you select it but I wish to do it on the first one.

Thanks

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

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

发布评论

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

评论(1

乖乖公主 2024-10-14 10:41:42

一种方法是使用 UITabBarControllerDelegate–tabBarController:didSelectViewController: 方法时收到通知用户选择导航控制器。然后,在该方法中,根据需要弹出导航控制器。

One way to do this would be to use UITabBarControllerDelegate’s –tabBarController:didSelectViewController: method to be notified when the user selects the navigation controller. Then, in that method, pop your navigation controller as desired.

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