前端之家收集整理的这篇文章主要介绍了
ios – Swift 3类型’Any’没有下标成员,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚把我的项目转换为
Swift 3我在这里有这行
代码:
let type = self.data[indexPath.row]["Type"] as? String
但现在我收到这个错误:
Type 'Any' has no subscript members
为什么我收到此错误并修复它?
let type = (self.data[indexPath.row] as? [String : String])?["Type"]
您需要将self.data [indexPath.row]强制转换为字典.
原文链接:https://www.f2er.com/iOS/334965.html