表达式从“ Int?”隐式强制转换甚至明确定义之后

时间:2018-12-12 10:56:01

标签: swift

即使我已明确定义为[String:Any?],我也在字典中遇到此错误。

enter image description here

1 个答案:

答案 0 :(得分:0)

如果要禁止显示此警告,请在字典中每个值的以下添加“ as Any”。

let dictAddress: [String: Any?] = [ { "id" : self.id.value as Any } ]