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 |
Tags
- collectionview
- swiftUI
- ribs
- clean architecture
- ios
- HIG
- 리팩토링
- 애니메이션
- uitableview
- rxswift
- UITextView
- uiscrollview
- MVVM
- combine
- RxCocoa
- SWIFT
- Human interface guide
- UICollectionView
- map
- 리펙토링
- Protocol
- tableView
- swift documentation
- Observable
- 클린 코드
- 스위프트
- Refactoring
- Clean Code
- 리펙터링
- Xcode
Archives
- Today
- Total
목록RxOperator (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] RxSwift, RxSwiftExt, RxOptional 많이 쓰는 연산자 정리
RxSwift withUnretained(self) - capture list를 사용하지 않고 심플하게 표현 Observable.of(1, 2, 3, 4, 5) .withUnretained(self) .subscribe { vc, value in vc.temp = value } .disposed(by: disposeBag) 1) Combine(결합) 연산자 (merge, combineLatest, withLatestFrom, zip, concat) - 이전 글 참고 Scan Observable.of(1,2,3,4) .scan(0, accumulator: { (prevValue, newValue) in return prevValue + newValue }) .do { print($0) } .subscri..
iOS 응용 (swift)
2021. 12. 21. 22:44