if let action = self.info?["action"] {
switch action as! String {
....
}
} else {...}
在这个例子中," action"始终作为self.info中的密钥存在。
第二行执行后,我得到:
Could not cast value of type 'NSNull' (0x1b7f59128) to 'NSString' (0x1b7f8ae8).
任何想法,即使我打开它,行动怎么可能是NSNull?我甚至尝试过#34;如果行动!= nil",但它仍然以某种方式滑过并导致SIGABRT。
答案 0 :(得分:1)
NSNull
是一个特殊值,通常由JSON处理产生。它与nil
值非常不同。而且你不能强迫一个对象从一种类型转换为另一种类型,这就是你的代码失败的原因。
您有几个选择。这是一个:
let action = self.info?["action"] // An optional
if let action = action as? String {
// You have your String, process as needed
} else if let action = action as? NSNull {
// It was "null", process as needed
} else {
// It is something else, possible nil, process as needed
}
答案 1 :(得分:0)
试一试。因此,在第一行中,首先检查“action”是否存在有效值,然后检查该值是否为String
if let action = self.info?["action"] as? String {
switch action{
....
}
} else {...}
答案 2 :(得分:0)
if let action = self.info?["action"] { // Unwrap optional
if action is String { //Check String
switch action {
....
}
} else if action is NSNull { // Check Null
print("action is NSNull")
} else {
print("Action is neither a string nor NSNUll")
}
} else {
print("Action is nil")
}