'AppDelegate' 类型的值没有成员 'Window' swift
Value of type 'AppDelegate' has no member 'Window' swift
我在尝试从应用程序委托访问 window 时收到一条错误消息::
Value of type 'AppDelegate' has no member 'Window'
这是你的错字; window
属性 是用小写字母写的 - 因为 Swift 中的所有属性和函数都应该是。
请更新为:
let appDelegate = UIApplication.shared.delegate as! AppDelegate
appDelegate.window!.rootViewController = appController
快乐编码:-)
试试这个
UIApplication.shared.delegate?.window
我在尝试从应用程序委托访问 window 时收到一条错误消息::
Value of type 'AppDelegate' has no member 'Window'
这是你的错字; window
属性 是用小写字母写的 - 因为 Swift 中的所有属性和函数都应该是。
请更新为:
let appDelegate = UIApplication.shared.delegate as! AppDelegate
appDelegate.window!.rootViewController = appController
快乐编码:-)
试试这个
UIApplication.shared.delegate?.window