我是Swift的新手,我正在尝试从NSDictionary
生成JSON数据
这是我的代码:
func metricsToJson() {
if let data = NSJSONSerialization.dataWithJSONObject(metricsData, options: NSJSONWritingOptions.PrettyPrinted, error: &error) {
if let json = NSString(data: data, encoding: NSUTF8StringEncoding) {
println(json)
}
}
}
答案 0 :(得分:0)
尝试下面的代码,它可能有助于解决您的问题。
var jsonResult = NSJSONSerialization.JSONObjectWithData(metricsData, options: NSJSONReadingOptions.MutableContainers, error: nil) as! NSArray
for var i = 0; i<jsonResult.count; ++i {
var dictResult = jsonResult.objectAtIndex(i) as! NSDictionary
// your code...
}