RxCells 1.0.0

RxCells 1.0.0

Maintained by pikciu.



 
Depends on:
RxSwift~> 6.0
RxCocoa~> 6.0
Reusable~> 4.1
 

RxCells 1.0.0

  • By
  • Tomasz Pikć

RxCells

Usage

Binding

Observable.just(Array(0..<100)).bind(to: tableView.rx.cells(SampleCell.self))

Cell configuration

final class SampleCell: UITableViewCell, Configurable, Reusable {
    func configure(with model: Int) {
        self.textLabel?.text = "value: \(model)"
    }
}

Installation

via CocoaPods:

pod 'RxCells'