- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在尝试获取不在 AppDelegate 中的当前显示 UIViewController
,但它似乎总是获取初始顶部 UIViewController
,而不是当前显示的 UIViewController
.
AppDelegate 中的以下代码确实获得了当前的 UIViewController
,但是当我在我的任何一个 View Controller 中使用它时,这个相同的功能不起作用:
func getTopViewController() -> UIViewController
{
var topViewController = UIApplication.sharedApplication().delegate!.window!!.rootViewController!
while (topViewController.presentedViewController != nil) {
topViewController = topViewController.presentedViewController!
}
return topViewController
}
以上代码是作为类似问题的答案提供的: Get the current displaying UIViewController on the screen in AppDelegate.m
无论我深入到多深,我只能检索到最前面的 View Controller 。
如何获取当前呈现的 UIViewController
?
仅供引用:我不使用UINavigationController
,只是常规的UIViewController
类。
最佳答案
我不喜欢使用它,但有时它是必要的。
static func getTopViewController() -> UIViewController {
var viewController = UIViewController()
if let vc = UIApplication.shared.delegate?.window??.rootViewController {
viewController = vc
var presented = vc
while let top = presented.presentedViewController {
presented = top
viewController = top
}
}
return viewController
}
**编辑:
这是一个改进的版本,它总是获取最顶层的 View Controller
static var top: UIViewController? {
get {
return topViewController()
}
}
static var root: UIViewController? {
get {
return UIApplication.shared.delegate?.window??.rootViewController
}
}
static func topViewController(from viewController: UIViewController? = UIViewController.root) -> UIViewController? {
if let tabBarViewController = viewController as? UITabBarController {
return topViewController(from: tabBarViewController.selectedViewController)
} else if let navigationController = viewController as? UINavigationController {
return topViewController(from: navigationController.visibleViewController)
} else if let presentedViewController = viewController?.presentedViewController {
return topViewController(from: presentedViewController)
} else {
return viewController
}
}
关于ios - 如何获取当前显示的 UIViewController 不在 AppDelegate 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41073915/
我只有一个 Objective-C 项目,我想使用 AppDelegate 访问我的 xcdatamodel,但是当我将 AppDelegate.swift 添加到我的项目时,它显示了一个编译问题,它
我正在编写一些代码。 import UIKit @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate, XP
我们可以通过这些方式使用 AppDelegate 的对象... 1) AppDelegate *app; // Globally declared app = (AppDelegate*)[[UIAp
我有一个像往常一样有 AppDelegate 的应用程序。我有一个 AppDelegate 的扩展,像这样: extension AppDelegate { func doSomething(
我的 appDelegate 中有两种类型的 var:int 和 NSMutableArray我可以访问 viewController 中的 int var,但无法访问 NSMutableArray
我创建了一个新项目并想将 App Delegate 从 AppDelegate 重命名为 FlickrAppDelegate。我想我在适当的地方重命名并且能够构建但我收到以下错误: 它构建正常,但显然
我正在尝试使用名为 AWSAppSync 的适用于 iOS 的 Amazon Web Serivces SDK。我发现good instructions for Swift 。我将尝试使问题更普遍地适
我在尝试设置自动登录功能时遇到问题。 我之前对根 ViewController 进行了一些研究,发现我现在需要使用 SceneDelegate 来实现自动登录功能,而不是使用 AppDelegate。
我注意到在默认使用 ARC 的最新版本的 Xcode 中,当您开始一个新项目时 Xcode 为您生成的 main.m 文件使用 NSStringFromClass([AppDelegate class
AppDelegate 它继承UIResponder , 并且实现了UIApplicationDelegate协议 。UIApplicationDelegate 协议中定义了很多app不同状态下触发的
当我将以下覆盖添加到 AppDelegate 时: public override void HandleAction(UIApplication application, string action
我正在设计一个相当大的应用程序,启动时它将与几个不同的服务器创建 session 。由于他们正在创建一个在应用程序的所有部分中使用的 session ,因此我认为在应用程序委托(delegate)中最
Xcode 中给出的 AppDelegates 方法到底是什么?我的应用程序中有很多类(class)。现在我想要的是我有 AudioStreamer 类,并且我必须在大多数其他类中使用该类...并且我
我没有整天都碰过AppDelegate.h文件,突然我收到3个错误... // AppDelegate.h #import //!Expected selector for Objective-
我知道没有必要保留委托(delegate),以避免保留循环。我在一次采访中碰巧遇到了一个问题,“如果保留了 appDelegate 会怎样?”。我对此没有答案,并根据我的知识在这里寻求答案。谢谢 最佳
我正在快速制作一个应用程序,但我遇到了一些问题。我正在尝试运行我的应用程序,但每次都会出现错误。 这是完整的错误: *** 由于未捕获的异常“NSUnknownKeyException”而终止应用程序
- (void)applicationDidFinishLaunching:(UIApplication *)application { NSError *error = nil;
在AppDelegate.h我创建了以下属性, @property (strong, nonatomic) NSMutableDictionary *googleUserDetailsDictiona
我正尝试按照 Ray Wenderlichs 教程在 cocos2d 游戏中使用 UIKit:How To Integrate Cocos2D and UIKit 但是我卡在了这一点上: Then,
我正在开发一个使用 CoreLocation 来管理 iBeacon 的 iOS 应用程序。我在 AppDelegate 和 ViewController 中都有 Beacon 检测,但我希望 App
我是一名优秀的程序员,十分优秀!