gpt4 book ai didi

ios - 不使用 UINavigationController 的 visibleViewController?

转载 作者:行者123 更新时间:2023-11-29 11:12:40 30 4
gpt4 key购买 nike

在我的应用程序中,我只是使用典型的 UIViewController 方法来切换 View 。我没有使用 UINavigationController。但是,我确实需要使用 UINavigationController 具有的 visibleViewController API。

不,我也不能将我的项目转换为使用 UINavigationController。有什么方法可以检查我的应用程序中的另一个 UIViewController 是否是当前可见的 Controller ?

我现在使用 addSubview 和隐藏属性切换 View 。 (我知道这不是切换 View 的正确方法)。

无论如何,在我的情况下,是否可以做类似于 visibleViewController 的事情?

谢谢!

最佳答案

如果您使用 addSubview:,则只能确定 View 层次结构中的顶层 View 。您可以通过探索 Root View 的 subview 数组属性来确定顶 View

UIView *topview = [[rootview subviews] lastObject];

如果你想获得类似于 visibleViewController 的东西,你应该存储一个映射来保持 UIView 和 UIViewController 之间的关系。所以可以通过先获取topview,再获取对应的view controller来获取visibleViewController。

祝你好运!

关于ios - 不使用 UINavigationController 的 visibleViewController?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10843531/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com