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 | 31 |
Tags
- uitableview
- Refactoring
- 리펙토링
- Clean Code
- RxCocoa
- 스위프트
- SWIFT
- 리펙터링
- 클린 코드
- HIG
- map
- Human interface guide
- collectionview
- swift documentation
- 애니메이션
- swiftUI
- ribs
- rxswift
- Xcode
- UITextView
- Observable
- UICollectionView
- ios
- clean architecture
- combine
- tableView
- uiscrollview
- MVVM
- 리팩토링
- Protocol
Archives
- Today
- Total
목록map 디코딩 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - Swift] RxSwift의 map으로 디코딩하는 방법 (선언형 프로그래밍)
일반적인 디코딩 방법 User라는 Codable 모델 준비 struct User: Codable { let id: String let name: String } JSONDecoder()를 사용하여 data형태로 변경 func getUserData() -> Observable { let user = User(id: "1", name: "jake") let encoder = JSONEncoder() guard let data = try? encoder.encode(user) else { return .empty() } return .just(data) } 디코딩 사용 JSONDecoder()를 사용하여 data를 디코딩하여 user모델로 변경 getUserData() .subscribe(onNext: { d..
iOS 응용 (swift)
2022. 12. 24. 22:00