Codable
-
codable개발/iOS 2020. 11. 23. 15:49
codable은 swift4에서 추가된 프로토콜로 JSON 처리를 손쉽게 해준다. 예로 서버로부터 이런 json 결과물을 받으면 { "coord": { "lon": -0.13, "lat": 51.51 }, "weather": [ { "id": 721, "main": "Haze", "description": "haze", "icon": "50n" } ], "base": "stations", "main": { "temp": 4.91, "feels_like": 1.93, "temp_min": 4.44, "temp_max": 6, "pressure": 1028, "humidity": 87 }, "visibility": 2800, "wind": { "speed": 2.1, "deg": 230 }, "clouds"..