如何使所有Swift文件都可以访问变量?

时间:2015-04-18 19:56:50

标签: ios swift variables xcode6 global-variables

说我要在app delegate中分配一个变量。如何在不使用segues的情况下在所有其他视图控制器/ swift文件中访问此变量?

1 个答案:

答案 0 :(得分:0)

UIApplication.sharedApplication().delegate可以访问单例应用程序对象,所以:

let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
let x = appDelegate.myVariable