如何在Swift中获得对应用程序委托的引用?
最后,我想使用引用来访问受管对象上下文。
另一个解决方案是正确的,它将获得对应用程序的委托的引用,但是这将不允许您访问由您的UIApplication子类添加的任何方法或变量,如您的托管对象上下文。要解决这个问题,只需向下转换到“AppDelegate”,或者调用UIApplication子类。像这样:
Swift 3.x(用Xcode 8引入)
let appDelegate = UIApplication.shared.delegate as! AppDelegate let aVariable = appDelegate.someVariable
Swift 1.2 – 2.x(用Xcode 6.3引入)
let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate let aVariable = appDelegate.someVariable
Swift< 1.2
let appDelegate = UIApplication.sharedApplication().delegate as AppDelegate let aVariable = appDelegate.someVariable