Answers for "dictionary to json in swift"

1

swift convert dictionary to json

let dic = ["2": "B", "1": "A", "3": "C"]
let encoder = JSONEncoder()
if let jsonData = try? encoder.encode(dic) {
    if let jsonString = String(data: jsonData, encoding: .utf8) {
        print(jsonString)
    }
}
Posted by: Guest on January-29-2020

Code answers related to "dictionary to json in swift"

Code answers related to "Swift"

Browse Popular Code Answers by Language