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
- Xcode
- clean architecture
- collectionview
- Human interface guide
- 리펙토링
- ribs
- 클린 코드
- ios
- map
- 스위프트
- 리펙터링
- RxCocoa
- HIG
- swift documentation
- UICollectionView
- 리팩토링
- Refactoring
- Observable
- swiftUI
- Clean Code
- rxswift
- 애니메이션
- UITextView
- tableView
- uiscrollview
- SWIFT
- combine
- uitableview
- MVVM
- Protocol
Archives
- Today
- Total
목록replaceNil (1)
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] Combine의 Operator - transfer (map, tryMap, flatMap, mapError, replaceNil, scan, tryScan, setFailureType)
목차) Combine - 목차 링크 Map 값 요소들을 하나씩 맵핑 (값에 변화를 주는 연산자) let publisher1 = [1, 2, 3].publisher let cancellable1 = publisher1 .map { $0 + 2 } .sink(receiveValue: { print($0) }) /* 3 4 5 */ tryMap map 클로저 내부에서 예외가 던져질 수 있는 연산이 있을때 사용 예외 처리하는 곳은 sink의 receiveCompletion에서 수행 enum SomeError: Error { case zero } let publisher2 = [2, 1, 0].publisher let cancellable2 = publisher2 .tryMap { guard $0 != 0 els..
iOS Combine (SwiftUI)
2022. 9. 22. 22:05