我想从我的其他类
中的AppDelegate类访问变量class AppDelegate: NSObject, NSApplicationDelegate
class Other: NSView
我尝试了AppDelegate.variable,但它不起作用
答案 0 :(得分:2)
您需要执行此操作:let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
然后您可以访问其成员变量。