Swift:Understanding the “fatal error: unexpectedly found nil while unwrapping an Optional value” errors in Swift

关于swift可选值为空的错误的安全判断

// 定义一个变量
var contet: String = ""

// 从一个字典中取值的时候发生报错
self.contet = dic["descriptions"] as! String
// 报错如下
Understanding the “fatal error: unexpectedly found nil while unwrapping an Optional value” errors in Swift

不解:打印dic["descriptions"]
结果为: Optional() 

这时候发现怎么做判断都不好使

拆包的隐患
做了以下判断
先装包再拆包
if ((dic["descriptions"] as? String) != nil) {
                self.contet = (dic["descriptions"] as? String)!
}

方法是笨拙了一点,希望各位伙伴指正

你可能感兴趣的:(Swift:Understanding the “fatal error: unexpectedly found nil while unwrapping an Optional value” errors in Swift)