对当前可见的 uiviewcontroller 的引用

发布于 2024-09-28 02:34:19 字数 238 浏览 1 评论 0原文

在我的 ABC 类中的某个时刻,我想显示一个 UIViewController。 ABC 本身不是 UIViewController 的子类,因此我不能做

 [self.navigationController pushViewController:myViewController animated:NO]

有没有办法获取对当前可见的 UIViewController (导航堆栈顶部)的引用

AT certain point in my class ABC, I want to display a UIViewController. ABC itself is not a subclass of UIViewController, hence I cant do

 [self.navigationController pushViewController:myViewController animated:NO]

Is there a way to get a reference to the currently visible UIViewController (top of navigation stack)

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

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

发布评论

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

评论(2

掩耳倾听 2024-10-05 02:34:19

UI导航控制器:

@property(nonatomic, readonly, retain) UIViewController *topViewController

位于导航堆栈顶部的视图控制器。 (只读)

@property(nonatomic, readonly, retain) UIViewController *visibleViewController

与导航界面中当前可见视图关联的视图控制器。 (只读)

当前可见视图可以属于导航堆栈顶部的视图控制器,也可以属于以模态方式呈现的视图控制器。

UINavigationController :

@property(nonatomic, readonly, retain) UIViewController *topViewController

The view controller at the top of the navigation stack. (read-only)

@property(nonatomic, readonly, retain) UIViewController *visibleViewController

The view controller associated with the currently visible view in the navigation interface. (read-only)

The currently visible view can belong either to the view controller at the top of the navigation stack or to a view controller that was presented modally.

国粹 2024-10-05 02:34:19

我通过在 AppDelegate 中创建对 RootViewController 的静态引用并通过静态方法访问它们来解决这个问题。

I solved it by creating a static reference to RootViewController in my AppDelegate and accessing them through static methods.

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