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
- HIG
- SWIFT
- 클린 코드
- uitableview
- Clean Code
- rxswift
- 리팩토링
- ios
- UICollectionView
- uiscrollview
- 스위프트
- Human interface guide
- swift documentation
- RxCocoa
- UITextView
- 리펙토링
- map
- combine
- MVVM
- Observable
- swiftUI
- Refactoring
- ribs
- Protocol
- Xcode
- 리펙터링
- tableView
- 애니메이션
- clean architecture
- collectionview
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] Combine filtering 연산자 (filter, tryFilter, compactMap, tryCompactMap, removeDuplicates, tryRemoveDuplicates, replaceEmpty, replaceError) 본문
iOS Combine (SwiftUI)
[iOS - SwiftUI] Combine filtering 연산자 (filter, tryFilter, compactMap, tryCompactMap, removeDuplicates, tryRemoveDuplicates, replaceEmpty, replaceError)
jake-kim 2022. 11. 8. 22:35목차) Combine - 목차 링크
Filtering 연산자
- filter
// filter
[1,2,3].publisher
.filter { $0 % 2 == 0 }
.sink(receiveValue: { print($0) })
.store(in: &cancellable)
// 2
- tryFilter
- 특정 조건에 해당하면 Error를 throw
- throw를 처리하는 곳은 .sink의 receiveCompletion에서 수행
- 주의할점은 throw가 발생하면 해당 스트림은 해제되기 때문에 3은 방출되지 않음
[1,2,-1,3].publisher
.tryFilter {
if $0 == -1 {
throw MyError.a
} else {
return true
}
}
.sink(
receiveCompletion: { val in
switch val {
case let .failure(error):
print("error=", error)
case .finished:
print("finish")
}
},
receiveValue: { print($0) }
)
.store(in: &cancellable)
/*
2
1
2
error= a
*/
- compactMap
- Optional 해제
- tryCompactMap 연산자 = compactMap 연산자 + throw를 할 수 있는 연산자
[1, 2, Optional(3), 4].publisher
.compactMap { $0 }
.sink(receiveValue: { print($0) })
.store(in: &cancellable)
/*
1
2
3
4
*/
- removeDuplicates
- 중복 제거
- tryRemoveDuplicates 연산자 = removeDuplicates 연산자 + try 연산자
[1, 2, 2, 3].publisher
.removeDuplicates()
.sink(receiveValue: { print($0) })
.store(in: &cancellable)
/*
1
2
3
*/
- replaceEmpty
- empty인 이벤트가 넘어올때 특정 값으로 변경
Empty<Int, Never>()
.replaceEmpty(with: 10)
.sink(receiveValue: { print($0) })
.store(in: &cancellable)
// 10
- replaceError
- error 발생 시 다른 값으로 변경
// error가 발생하면 해당 stream은 해제되므로, 뒤에 오는 값 (4)은 방출 x
[1,2,3,-1,4].publisher
.tryMap {
if $0 == -1 {
throw MyError.a
} else {
return $0
}
}
.replaceError(with: 100)
.sink(receiveValue: { print($0) })
.store(in: &cancellable)
/*
1
2
3
100
*/
'iOS Combine (SwiftUI)' 카테고리의 다른 글
Comments