编译器告诉我AnyObject?没有名为'count'的成员。对于以下代码。我想知道是否有一种方法可以将其强制转换为NSArray?
if answer.objectForKey("answer").count == 0 {
}
我尝试了
answer.objectForKey("answer").count == 0 as NSArray
,但得到了完全相同的编译器错误。编辑:
let answer : AnyObject = answerArray.objectForKey(key)!
最佳答案
最好的方法是使用检查强制类型转换:
if let contents = answer.objectForKey("answer") as? NSArray {
if contents.count == 0 {
}
}
关于ios - swift : How to typecast an AnyObject to an NSArray in this situation?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27932034/