如何在swift中使用来自不同类的变量?

时间:2015-11-10 03:36:43

标签: swift variables

我想从我的其他类

中的AppDelegate类访问变量
class AppDelegate: NSObject, NSApplicationDelegate

class Other: NSView

我尝试了AppDelegate.variable,但它不起作用

1 个答案:

答案 0 :(得分:2)

您需要执行此操作:let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate然后您可以访问其成员变量。