iphone:检查当前视图控制器是否在 moreNavigationController 上

发布于 2024-12-28 23:21:30 字数 298 浏览 1 评论 0原文

我遇到过这个问题,我需要知道我当前的视图控制器是在 moreNavigationController 上还是一个选项卡项。基本上我想隐藏一些屏幕的 TabBar 并让用户选择使用左侧导航按钮移回主屏幕(最好是前一个屏幕)!如果我的视图控制器位于 moreNavigationController 上,那么我可以简单地 popViewControllerAnimated:YES ,它将返回到“更多”屏幕,但当它是选项卡项时,我需要更改所选选项卡索引。

有没有办法知道当前视图控制器是否在 moreNavigationController 上?

谢谢。

I have run across this where I need to know whether my current viewcontroller is on moreNavigationController or it is a tab item. Basically I want to hide TabBar for some of my screens and giving choice to user to move back to homescreen(ideally previous screen) using left navigation button! If my view controller is on moreNavigationController then I can simply popViewControllerAnimated:YES and it will go back to More screen but when it is Tab item then I need to change the selected tab index.

Is there anyway to know whether current view controller is on moreNavigationController?

Thanks.

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

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

发布评论

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

评论(2

孤城病女 2025-01-04 23:21:30

我没有可以测试它的项目,但我认为这可能可以。

BOOL isOnMore = ([self.tabBarController.moreNavigationController.viewControllers containsObject:self]);

I don't have a project to test it on, but I think this might do it.

BOOL isOnMore = ([self.tabBarController.moreNavigationController.viewControllers containsObject:self]);
临走之时 2025-01-04 23:21:30

Swift 4 更新

let isOnMore: Bool = (self.tabBarController?.moreNavigationController.viewControllers.contains(self))!

Update for Swift 4

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