0
我想從我的AppDelegate類訪問變量我在其他類如何在swift中使用不同類的變量?
class AppDelegate: NSObject, NSApplicationDelegate
class Other: NSView
我試圖AppDelegate.variable,但它不工作
我想從我的AppDelegate類訪問變量我在其他類如何在swift中使用不同類的變量?
class AppDelegate: NSObject, NSApplicationDelegate
class Other: NSView
我試圖AppDelegate.variable,但它不工作
你需要這樣做:let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
然後你就可以訪問其成員變量。
我試過了,它說 – toiavalle
使用未解決的標識符UIApplication – toiavalle
不要忘記添加'import UIKit' – Korpel