일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- iOS 버전 점유율
- 로버트마틴형
- App Signing
- iOS Target
- conflicting access to memory
- Apple Certificate
- Git Large File Storage
- swiftdocs
- 클린아키텍쳐
- coordinateSpace
- Dependency Rule
- UICoordinateSpace
- 메모리 접근 충돌
- 대머리깃허브
- rib
- RIBs Tutorial
- Automatically manage signing
- SWIFT
- Large File Storage
- RxSwift
- windowScene
- Dispatch.main.sync
- Github file size
- Ribs
- Concurrent
- RxCocoa
- 잡초가득블로그
- in-out
- memory safety
- ios
- Today
- Total
목록RxCocoa (2)
빙수왕의 개발일지
자꾸 찾아보기 힘들어서 표로 정리해야겠따.. 제가 아는 선에서 정리했으므로,, 내용이 부족하거나 생략됐을 수 있습니다. 클래스 생성 구독 방출 특징 Observable in RxSwift = create() Operators(just, ...) * 어딘가 property로 저장했을 때 default값 아래처럼 가능 let items: Observable = Observable([]) subscribe -> Disposable bind(to: A) * A는 Binder 불가 - 뇌가 없어서 방출을 원할 때 할 수 없다. Subject in RxSwift = PublishSubject() = BehaviorSubject(value = 기본값) ... subscribe bind(to: A) * A는 Binde..
4가지 방법이 있다. 출처 https://github.com/RxSwiftCommunity/RxDataSources RxSwiftCommunity/RxDataSources UITableView and UICollectionView Data Sources for RxSwift (sections, animated updates, editing ...) - RxSwiftCommunity/RxDataSources github.com 각각 언제 사용하는가? 1) rx.items(dataSource:protocol) - 아직 안써봄. dataSource를 넣어주는걸 봐선 아주 세밀한 커스텀(?)이 필요할 때 쓰일 것 같다. 2) rx.items(cellIdentifier:String) - cell 커스텀 클래스를 ..