突然我开始收到运行时错误,因为,
fatal error: NSArray element failed to match the Swift Array Element type
我已将我的数组声明为,
var myArray : [CUSTOM_CLASS] = [CUSTOM_CLASS]()
现在,在我的服务器响应成功块中,
self.myArray = dicResponse["data"]! as Array
println(self.myArray) // FATAL ERROR HERE
在升级到 Xcode6 Beta6 之前它工作得很好
FYI : dicResponse["data"]! // is verified as valid
(抱歉之前指错地方了!)
解决了 :
不知道,但我做了一些改变,它的工作原理,
var myArray = [AnyObject]()
self.myArray = dicResponse["data"]! as [AnyObject]