Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 메모리 접근 충돌
- ios
- Dispatch.main.sync
- in-out
- Automatically manage signing
- rib
- SWIFT
- 클린아키텍쳐
- Ribs
- Apple Certificate
- RIBs Tutorial
- swiftdocs
- memory safety
- Git Large File Storage
- Large File Storage
- UICoordinateSpace
- 로버트마틴형
- Github file size
- 잡초가득블로그
- conflicting access to memory
- RxSwift
- windowScene
- Dependency Rule
- Concurrent
- 대머리깃허브
- iOS 버전 점유율
- coordinateSpace
- iOS Target
- App Signing
- RxCocoa
Archives
- Today
- Total
빙수왕의 개발일지
타입 나눠서 decoding하기 본문
서버에서 내려주는 커피 리스트가 있다. 이 커피 리스트를 디코딩한다고 가정하자.
커피 종류는 2가지가 있고, 이 2가지는 내부 프로퍼티 값에 따라 구분된다. (또는 각 다른 프로퍼티를 가진다)
ex) [StructA(), StructA(), StructB(), StructA(), StructB(), ... ]
서버에서 다 같은 형태로 내려주는 아이를 앱에서는 구분하고 싶을 때!!
각 타입을 다른 struct로 디코딩 하고싶다면 어떻게 할까?
CoffeeDecoder struct를 따로 만들어준다.
예시)
Coffee 의 ingredients 값에 따라 형태 나눌 수 있다.
아래 예시에서는 두가지 모두 Coffee struct 형태를 사용하지만, 각 Coffee 종류의 보유 프로퍼티가 다르다면 Struct 2가지를 나눠서 분리도 가능하다.
enum CoffeeDecoder: Decodable {
case basedOnCoffee(Coffee)
case others(Coffee)
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: Coffee.CodingKeys.self)
// ingredients에 "Coffee"가 있는 부류, 아닌 부류 나누기
let ingredients = try container.decodeIfPresent([String].self, forKey: Coffee.CodingKeys.ingredients) ?? []
let basedOnCoffee = ingredients.contains {
$0 == "Coffee"
}
let coffee = try Coffee(from: decoder)
if basedOnCoffee {
self = .basedOnCoffee(coffee)
} else {
self = .others(coffee)
}
}
var coffee: Coffee {
switch self {
case .basedOnCoffee(let basedOnCoffee):
return basedOnCoffee
case .others(let others):
return others
}
}
}
Coffee Struct
struct Coffee: Decodable {
let title: String?
let description: String
let ingredients: [String]
let image: String
let id: Int
}
호출하는 부분
let jsonData = try Data(contentsOf: location)
let decoded = try JSONDecoder().decode([CoffeeDecoder].self, from: jsonData)
'개발 > iOS' 카테고리의 다른 글
KeyedDecodingContainer의 메소드들 - decode, nestedContainer, superDecoder 등 (0) | 2023.01.14 |
---|---|
Decoder 3가지 메소드 정리 (Container 종류) (1) | 2023.01.14 |
WWDC 2022 - Meet Swift Async Algorithms (0) | 2022.07.01 |
WWDC 2022 - Get more mileage out of your app with CarPlay (0) | 2022.07.01 |
WWDC 2022 - Platforms State of the Union (0) | 2022.06.30 |