我刚刚从
swift 1.2升级到2.我得到一个数组’不可用:请从你的懒人序列构建一个数组:数组(…)我似乎无法将我的前提包围如何解决这个问题
MyVariables.selectedUser = MyVariables.dictionary.keys.array[indexPath.row] as String
什么应该将“MyVariables.dictionary.keys.array [indexPath.row] as String”更改为?
解决方法
它说的是键返回的延迟序列上的数组属性不再可用.在Swift 2中,您使用初始化程序将惰性序列转换为数组:
MyVariables.selectedUser = Array(MyVariables.dictionary.keys)[indexPath.row] as String