我如何在Swift中获得对AppDelegate的引用?

最后,我想使用引用来访问托管对象上下文。


当前回答

这可以用于OS X

let appDelegate = NSApplication.sharedApplication().delegate as AppDelegate
var managedObjectContext = appDelegate.managedObjectContext?

其他回答

斯威夫特4.2

在Swift中,很容易在你的VC中访问

extension UIViewController {
    var appDelegate: AppDelegate {
    return UIApplication.shared.delegate as! AppDelegate
   }
}

下面是一个UIApplicationDelegate的扩展,它避免了硬编码AppDelegate类名:

extension UIApplicationDelegate {

    static var shared: Self {    
        return UIApplication.shared.delegate! as! Self
    }
}

// use like this:
let appDelegate = MyAppDelegate.shared // will be of type MyAppDelegate

在Swift 3.0中,你可以通过

let appDelegate = UIApplication.shared.delegate as! AppDelegate

我在Swift 2.3中使用这个功能。

1. 在AppDelegate类中

static let sharedInstance: AppDelegate = UIApplication.sharedApplication().delegate as! AppDelegate

2. 调用AppDelegate

let appDelegate = AppDelegate.sharedInstance

从iOS 12.2和Swift 5.0开始,AppDelegate不能被识别。UIApplicationDelegate。因此,任何涉及AppDelegate的答案都不再正确。下面的答案是正确的,并避免了强制展开,一些开发人员认为这是一种代码气味:

import UIKit

extension UIViewController {
  var appDelegate: UIApplicationDelegate {
    guard let appDelegate = UIApplication.shared.delegate else {
      fatalError("Could not determine appDelegate.")
    }
    return appDelegate
  }
}