Getting the top most UIViewController(获取最顶层的 UIViewController)
问题描述
如果我在 UINavigationController 上推送视图控制器和/或呈现模式视图控制器,我如何找出最顶部的 UIViewController 是什么?或者就我而言,我想知道某个 UITableViewController 是否是最顶层的.
If I push view controllers and/or present modal view controllers on a UINavigationController, how can I find out what is the top most UIViewController? Or in my case, I want to know if a certain UITableViewController is the top most or not.
我尝试使用:
self.navigationController.topViewController == self
...但这不起作用.我猜它失败了,因为我在它上面展示了模态视图控制器,并且 topViewController 只跟踪在 UINavigationController 上推送了哪些视图(如反对那些以模态形式呈现的).
... but this doesn't work. I'm guessing that it's failing because I'm presenting modal view controllers on top of it and that the topViewController only keeps track of which views were pushed on the UINavigationController (as opposed to those that were presented modally).
推荐答案
你想要visibleViewController:
当前可见的视图可以属于导航堆栈顶部的视图控制器,也可以属于模态显示的视图控制器.
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.
这篇关于获取最顶层的 UIViewController的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:获取最顶层的 UIViewController
基础教程推荐
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
