반응형
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
- Bug
- NavigationLink
- Operater
- ios14
- Creating Operators
- Operators
- RFC1738/1808
- IOS
- SwiftUI
- init
- nestjs
- graphql
- nonisolated
- @Environment
- init?
- Xcode
- @EnvironmentObject
- @Binding
- @State
- URL(string:)
- typeorm
- operator
- RxSwift
- dismiss
- SWIFT
- swift6
- subject
- vim
- RxCocoa
- NullObject
Archives
- Today
- Total
Tunko Development Diary
RxSwift) RxCocoa - UICollectionView 본문
RxCocoa 를 이용해 UICollectionView를 사용
let systemColors = [UIColor.systemRed,
UIColor.systemOrange,
UIColor.systemYellow,
UIColor.systemGreen,
UIColor.systemTeal,
UIColor.systemBlue,
UIColor.systemIndigo,
UIColor.systemPurple,
UIColor.systemPink,
UIColor.systemBrown]
@available(iOS 14.0, *)
class TestViewController: UIViewController {
@IBOutlet weak var collectionView: UICollectionView!
let disposeBag = DisposeBag()
let colorObservable = Observable.of(systemColors)
override func viewDidLoad() {
super.viewDidLoad()
colorObservable.bind(to: collectionView.rx.items(cellIdentifier: "colorCell", cellType: ColorCollectionViewCell.self)) { index, color, cell in
cell.backgroundColor = color
cell.hexLabel.text = color.accessibilityName
}
.disposed(by: disposeBag)
collectionView.rx.modelSelected(UIColor.self)
.subscribe { color in
print(color.rgbHexString)
}
.disposed(by: disposeBag)
collectionView.rx.setDelegate(self)
.disposed(by: disposeBag)
}
}
@available(iOS 14.0, *)
extension TestViewController: UICollectionViewDelegateFlowLayout {
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
guard let flowLayout = collectionViewLayout as? UICollectionViewFlowLayout else {
return CGSize.zero
}
let value = (collectionView.frame.width - (flowLayout.sectionInset.left + flowLayout.sectionInset.right + flowLayout.minimumInteritemSpacing)) / 2
return CGSize(width: value, height: value)
}
}
결과 화면

반응형
'Development > RxSwift' 카테고리의 다른 글
RxSwift) RxCocoa - TableView (0) | 2022.06.14 |
---|---|
RxSwift) RxCocoa Traits(Driver) (0) | 2022.06.13 |
RxSwift) RxCocoa Binding (0) | 2022.06.12 |
RxSwift) RxCocoa 란? (0) | 2022.06.12 |
RxSwift) Error Handling (retry, retry(when:)) (0) | 2022.06.10 |