𝗔𝗣𝗣𝗟𝗘/SWIFT : GRAMMAR
2024. 4. 13.
Swift 기초 문법 - Codable: JSON을 위한 JSON에 대한 Encoding / Decoding
Codable: JSON을 위한 JSON에 대한 Encoding / Decoding 목차 접기 Codable: JSON을 위한 JSON에 대한 Encoding / Decoding JSON Codable Encoding Decoding CodingKey 💡 Codable: JSON을 위한 JSON에 대한 Encoding / Decoding Codable에 설명하기 전, JSON에 대해 간략히 알아보자. JSON이란? JavaScript Object Notation (JSON)은 Javascript 객체 문법으로 구조화된 데이터를 표현하기 위한 문자 기반의 표준 포맷이다. JSON 예시 { "name": "WOOD", "age": 24, "city": "wood-fxrest" } 위의 예시와 같이 Swift..