“Diccionario Swift a JSON String Online” Código de respuesta

Swift Convert Dictionary a 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)
    }
}
Mobile Star

Diccionario Swift a JSON String Online

["lat": 232, "location": Add Map Entry, "long": 0.0, "_method": PUT, "type": 1, "description": photo from camera edited, "deleted_images[]": ["6"]]
Envious Elk

Respuestas similares a “Diccionario Swift a JSON String Online”

Preguntas similares a “Diccionario Swift a JSON String Online”

Más respuestas relacionadas con “Diccionario Swift a JSON String Online” en Swift

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código