JSONDecoder

    [Sesac IOS] 40일차 TIL

    40일차 수업 내용을 정리한 글입니다. Learned Codable 1. 개요 A type that can convert itself into and out of an external representation. Codable is a type alias for the Encodable and Decodable protocols. Encodable과 Decodable 프로토콜을 모두 포함하는 typealias (Encodable과 Decodable 중 하나만 지원한다면 사용 불가) 클래스, 구조체같은 내부 객체가 JSON같은 외부적 표현으로 변환(convert)될 수 있도록 인코딩 및 디코딩이 가능하게 해주는 기능을 함. JSON 형식 뿐만 아니라, 데이터를 디스크에 저장하거나 네트워크로 전송할 때 필요..