pendant.kstudio-pendant.hashnode.dev·Nov 12, 2024[TIL/Swift] Swift Codable은 왜쓰는걸까?Codable이란 Codable은 Decodable과 Encodable 프로토콜을 모두 만족하는 type임을 알리는 typealias이다. typealias Codable = Decodable & Encodable Codable을 타입이나 generic으로 활용한다면 손쉽게 데이터 모델을 JSON과 같은 외부 데이터 포맷으로 인코딩하고 디코딩할 수 있다. 외부 데이터와 상호작용할 수 있도록 도와주는 내장 type인 것 같다. 예시 코드 개념만...TILSwiftAdd a thoughtful commentNo comments yetBe the first to start the conversation.