现在我知道当swift编译它只是一个NSDictionary,但NSDictionary和Swift词典有不同的语法。是否有一种方式(通过循环或其他方式)将NSDictionary转换为< key,value> ;?相同类型的swift字典 要么 有没有办法将这转换为Swift字典而不是NSDictionary?
let jsonDict = NSJSONSerialization.JSONObjectWithData(jsonData,options: nil,error: &error) as NSDictionary
使用:
原文链接:https://www.f2er.com/swift/321138.htmllet jsonDic = NSJSONSerialization.JSONObjectWithData(jsonData,options: NSJSONReadingOptions.MutableContainers,error: &error) as Dictionary<String,AnyObject>;