将NSDictionary转换为Swift字典

前端之家收集整理的这篇文章主要介绍了将NSDictionary转换为Swift字典前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
现在我知道当swift编译它只是一个NSDictionary,但NSDictionary和Swift词典有不同的语法。是否有一种方式(通过循环或其他方式)将NSDictionary转换为< key,value&gt ;?相同类型的swift字典 要么 有没有办法将这转换为Swift字典而不是NSDictionary?
let jsonDict = NSJSONSerialization.JSONObjectWithData(jsonData,options: nil,error: &error) as NSDictionary
使用:
let jsonDic = NSJSONSerialization.JSONObjectWithData(jsonData,options: NSJSONReadingOptions.MutableContainers,error: &error) as Dictionary<String,AnyObject>;
原文链接:https://www.f2er.com/swift/321138.html

猜你在找的Swift相关文章