swift 开发过程中犯过的错误记录

前端之家收集整理的这篇文章主要介绍了swift 开发过程中犯过的错误记录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.嵌套数组使用过程中的错误

错误提示:Cannot assign to immutable value of type 'String' Could not find member 'subscript' 如下图


当然这样写问题很大的,这里要说的重点是第一重字典后面的as后面应为“!”,而不能为"?",正确写法如下:

//                  //与下面的方法等价
//                  var imgsDic = dict["images"] as! NSDictionary
//                  model.movImg = imgsDic["large"] as? String
                    model.movImg = (dict["images"] as! NSDictionary)["large"] as? String
原文链接:https://www.f2er.com/swift/326041.html

猜你在找的Swift相关文章