“Swift Convert Dictionary a JSON” 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

Swift Convert Dictionary a JSON

["currency": "INR", "name": "Ekluvya", "amount": 120000.0, "notes": ["boardId": "61591e494e7cd84598b0be07", "isNonAcademicCourse": true, "courseId": "615a8ec416684544d7754f5c", "user_id": "6167e8534e21a3eb921bd616", "classId": "61591dae4e7cd84598b0be04"], "theme": ["color": "#FF6700"], "image": <UIImage:0x600002634990 named(main: app_Sign) {29.333333333333332, 32}>, "prefill": ["contact": "9992921199", "email": "[email protected]"]]
Dead Duck

Swift Convert Dictionary a JSON

["A":34,"B":56]
Stupid Skimmer

Convertir el diccionario a JSON Serialization Swift 4

["A":123, "B":455]
Calm Crossbill

Respuestas similares a “Swift Convert Dictionary a JSON”

Preguntas similares a “Swift Convert Dictionary a JSON”

Más respuestas relacionadas con “Swift Convert Dictionary a JSON” en Swift

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código