我想在swift 3中创建这种类型的数组

时间:2017-08-24 05:34:53

标签: ios arrays dictionary swift3 nsdictionary

我想在swift 3中的数组中创建这种类型的字典,我做了它,但它不是大括号,而是方括号。我想要大括号中的字典。

[{" interest_id":1},{" interest_id":2},{" interest_id":3}]

1 个答案:

答案 0 :(得分:0)

你可以这样做:

let dictArray = [ [ "interest_id":1 ] , ["interest_id":2], ["interest_id":3]]

    do {
        let jsonData = try JSONSerialization.data(withJSONObject: dictArray, options: .prettyPrinted)
        let json = NSString(data: jsonData, encoding: String.Encoding.utf8.rawValue)!
        print("json data: ", json )
    }
    catch {
        print("error: ", error.localizedDescription)
    }