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
- swift documentation
- map
- 리펙토링
- Protocol
- 애니메이션
- collectionview
- rxswift
- swiftUI
- HIG
- Clean Code
- clean architecture
- UITextView
- 클린 코드
- 리팩토링
- uiscrollview
- Human interface guide
- 스위프트
- ribs
- Refactoring
- Xcode
- SWIFT
- Observable
- RxCocoa
- uitableview
- combine
- ios
- tableView
- UICollectionView
- 리펙터링
- MVVM
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swiftUI] Combine - 목차 본문
Combine 기본 개념
- Combine이란?
- Combine 훓어보기 - RxSwift와의 차이점
- ObservableObject @Published, objectWillChange
- Cancellable (AnyCancellable)
- Publisher (AnyPublisher, Published)
- Publisher 생성 연산자 (Just, Sequence, Future, Fail, Empty, Deferred, Record)
- Subscriber (AnySubscriber)
- Subject (CurrentValueSubject, PassthroughSubject)
- Scheduler (receive(on:), subscribe(on:), delay(for:scheduler:))
Combine 연산자
- Operator - Transfering (map, tryMap, flatMap, mapError, replaceNil, scan, tryScan, setFailureType)
- Operator - Filtering (filter, tryFilter, compactMap, tryCompactMap, removeDuplicates, tryRemoveDuplicates(by:), replaceEmpty(with:), replaceError(with:))
- Operator - Reducing (collect, ignoreOutput, reduce, tryReduce)
- Operator - Mathematical (count, max, tryMax, min, tryMin)
- Operator - Sequence (drop, dropFirst, tryDrop, append, prepend, prefix, tryPrefix)
- Operator - Matching (contains, tryContains, allSatisfy, tryAllSatisfy)
- Operator - Selecting (first, last, tryFirst, tryLast, output)
- Operator - Combining (combineLatest, merge, zip)
- Operator - Error Handling (catch(_:), tryCatch(_:), retry(_:), assertNoFailure(_:file:line:))
'iOS Combine (SwiftUI)' 카테고리의 다른 글
[iOS - SwiftUI] Combine의 Publisher (AnyPublisher, Published) 사용 방법 (0) | 2022.09.17 |
---|---|
[iOS - SwiftUI] Combine의 Cancellable (AnyCancellable) 사용 방법 (2) | 2022.09.16 |
[iOS - swiftUI] Combine의 ObservableObject @Published, objectWillChange (0) | 2022.09.15 |
[iOS - SwiftUI] Combine 훑어보기 - RxSwift와의 차이점 (0) | 2022.09.14 |
[iOS - SwiftUI] Combine 이란? (2) | 2022.09.13 |
Comments