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
- 애니메이션
- ios
- clean architecture
- collectionview
- uiscrollview
- swift documentation
- 스위프트
- ribs
- 리펙토링
- map
- 리팩토링
- MVVM
- RxCocoa
- Protocol
- Refactoring
- Observable
- UICollectionView
- uitableview
- Human interface guide
- tableView
- rxswift
- UITextView
- HIG
- 클린 코드
- Clean Code
- combine
- 리펙터링
- swiftUI
- SWIFT
- Xcode
Archives
- Today
- Total
목록assertNoFailure(_:file:line:) (1)
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] Combine Error Handling 연산자 catch(_:), tryCatch(_:), retry(_:), assertNoFailure(_:file:line:)
목차) Combine - 목차 링크 Catch(_:) 에러가 발생할때 해당 에러에 대한 catch에 걸리면 catch에서 리턴한 데이터만 방출하고 위에있던 남은 데이터는 무시 struct MyError: Error {} let _ = [1,2,-3,4,5].publisher .tryMap { guard $0 > 0 else { throw MyError() } return $0 } .catch { error in [9,8,7].publisher } .sink( receiveCompletion: { print("Completion: \($0)") }, receiveValue: { print("Value:", $0) } ) // Value: 1 // Value: 2 // Value: 9 // Value: 8 ..
iOS Combine (SwiftUI)
2022. 11. 24. 22:17