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
- RxCocoa
- tableView
- Xcode
- 애니메이션
- UITextView
- Human interface guide
- swift documentation
- ios
- Clean Code
- HIG
- uitableview
- 리팩토링
- collectionview
- MVVM
- rxswift
- Protocol
- Refactoring
- UICollectionView
- uiscrollview
- Observable
- 리펙터링
- map
- 스위프트
- 클린 코드
- swiftUI
- SWIFT
- combine
- 리펙토링
- clean architecture
- ribs
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