“Swift String to Dictionary” Respostas de código

Swift converte dados em dicionário

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

Swift String to Dictionary

func convertStringToDictionary(text: String) -> [String:AnyObject]? {
    if let data = text.data(using: .utf8) {
        do {
            let json = try JSONSerialization.jsonObject(with: data, options: .mutableContainers) as? [String:AnyObject]
            return json
        } catch {
            print("Something went wrong")
        }
    }
    return nil
}
Elated Eland

Respostas semelhantes a “Swift String to Dictionary”

Perguntas semelhantes a “Swift String to Dictionary”

Mais respostas relacionadas para “Swift String to Dictionary” em Swift

Procure respostas de código populares por idioma

Procurar outros idiomas de código