说我要在app delegate中分配一个变量。如何在不使用segues的情况下在所有其他视图控制器/ swift文件中访问此变量?
答案 0 :(得分:0)
UIApplication.sharedApplication().delegate
可以访问单例应用程序对象,所以:
let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
let x = appDelegate.myVariable