标签:
比如:
let window=UIApplication.sharedApplication().delegate?.window
window!!.rootViewController=TabBarController()
如果有delegate 就有window 没有delegate window就为nil 然后nil!! 不明白啊
如果变量为nil使用!强制解包会报错 window!!表示解包两次
上面的代码你可以这么理解
if let delegate = UIApplication.sharedApplication().delegate {
if let window = delegate.window {
window.rootViewController = TabBarController()
}
}
标签:
原文地址:http://www.cnblogs.com/huangzs/p/5307711.html