Swift ?和!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift ?和!相关的知识,希望对你有一定的参考价值。
比如:
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()
}
}
以上是关于Swift ?和!的主要内容,如果未能解决你的问题,请参考以下文章
“filename+CoreDataProperties.swift”和“filename.swift”NSmanagedObject 子类有啥用?