Codable 을 알아보자
·
iOS/iOS 개념
공식문서 정의 개요 A type that can convert itself into and out of an external representation. → 외부 표현으로 전환할 수 있는 유형 정의 typealias Codable = Decodable & Encodable 내용 Codable is a type alias for the Encodable and Decodable protocols. When you use Codable as a type or a generic constraint, it matches any type that conforms to both protocols. → Codable은 Encodable 및 Decodable 프로토콜의 typealias입니다. Codable을 사용하면..