Answers for "convert dictionary to string 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
0

convert nscfstring to dictionary swift

do { 
  let dd =  userInfo["extraData"] as! String  
  let con = try JSONSerialization.jsonObject(with: dd.data(using: .utf8)!, options: []) as! [String:Any]
  print(con["message_id"]) 
catch {
   print(error)
}
Posted by: Guest on January-13-2022

Code answers related to "convert dictionary to string swift"

Code answers related to "Swift"

Browse Popular Code Answers by Language