“Converta JSON para JSON String iOS Swift” Respostas de código

Converta dados para JSON Swift

do{  
let json = try JSONSerialization.jsonObject(with: data!, options: []) as? [String : Any]
}catch{ print("erroMsg") }
Dead Dormouse

Converta JSON para JSON String iOS Swift

func jsonToString(json: AnyObject){
        do {
          let data1 =  try NSJSONSerialization.dataWithJSONObject(json, options: NSJSONWritingOptions.PrettyPrinted) // first of all convert json to the data
            let convertedString = String(data: data1, encoding: NSUTF8StringEncoding) // the data will be converted to the string
            print(convertedString) // <-- here is ur string  

        } catch let myJSONError {
            print(myJSONError)
        }

    }
Delightful Dingo

Converta JSON para JSON String iOS Swift

func jsonToString(json: AnyObject){
        do {
          let data1 =  try NSJSONSerialization.dataWithJSONObject(json, options: NSJSONWritingOptions.PrettyPrinted) // first of all convert json to the data
            let convertedString = String(data: data1, encoding: NSUTF8StringEncoding) // the data will be converted to the string
            print(convertedString) // <-- here is ur string  

        } catch let myJSONError {
            print(myJSONError)
        }

    }
Delightful Dingo

Respostas semelhantes a “Converta JSON para JSON String iOS Swift”

Perguntas semelhantes a “Converta JSON para JSON String iOS Swift”

Mais respostas relacionadas para “Converta JSON para JSON String iOS Swift” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código