“преобразовать JSON в json String ios swift” Ответ

преобразовать данные в JSON Swift

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

преобразовать JSON в 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

преобразовать JSON в 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

Ответы похожие на “преобразовать JSON в json String ios swift”

Вопросы похожие на “преобразовать JSON в json String ios swift”

Больше похожих ответов на “преобразовать JSON в json String ios swift” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования