ios – 数组不可用:请从你的懒惰序列构造一个数组:Array(…)

前端之家收集整理的这篇文章主要介绍了ios – 数组不可用:请从你的懒惰序列构造一个数组:Array(…)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚刚从 swift 1.2升级到2.我得到一个数组’不可用:请从你的懒人序列构建一个数组:数组(…)我似乎无法将我的前提包围如何解决这个问题
MyVariables.selectedUser = MyVariables.dictionary.keys.array[indexPath.row] as String

什么应该将“MyVariables.dictionary.keys.array [indexPath.row] as String”更改为?

@R_404_323@

它说的是键返回的延迟序列上的数组属性不再可用.在Swift 2中,您使用初始化程序将惰性序列转换为数组:
MyVariables.selectedUser = Array(MyVariables.dictionary.keys)[indexPath.row] as String
原文链接:https://www.f2er.com/iOS/332470.html

猜你在找的iOS相关文章