我不知道怎么做你的数据源。
我看了关于RxSwift和rxcoca的课程,发现对于复杂的表,需要使用数据源。找到了一个RxDataSourced库,但我们不允许使用它。决定编写自己的数据源,但什么也没发生。如果你不介意的话,你可以举一些在网上找不到的数据源的例子。
class RXSpecificationsDataSource: NSObject, RxTableViewDataSourceType, UITableViewDataSource {
typealias Element = MaterialEntityRootGroupProperty
var _sectionModels: [MaterialEntityRootGroupProperty] = []
public typealias ConfigureCell = (RXSpecificationsDataSource, UITableView, IndexPath) -> UITableViewCell
func tableView(_ tableView: UITableView, observedEvent: Event<RXSpecificationsDataSource.Element>) { }
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
guard _sectionModels.count > section else { return 0 }
return _sectionModels[section].properties.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
precondition(indexPath.item < _sectionModels[indexPath.section].properties.count) return ConfigureCell(self, tableView, indexPath, self[indexPath])
}
func numberOfSections(in tableView: UITableView) -> Int {
return _sectionModels.count
}
}
final class MaterialDetailSpecificationsView: UserInterface {
private var specificationTableView: UITableView!
private let disposeBag = DisposeBag()
func setupView(items: Variable<[MaterialEntityRootGroupProperty]>) {
setNabigationParms()
drawTableViewSpecifications()
let dataSource = RXSpecificationsDataSource ()
dataSource.configureCell = { (dataSource, tv, indexPath, element) in
let cell = tv.dequeueReusableCell(withIdentifier: "Cell")!
cell.textLabel?.text = "\(element) @ row \(indexPath.row)"
return cell
}
items.asObservable()
.bind(to: specificationTableView.rx.items(dataSource: dataSource))
.disposed(by: disposeBag)
}
最佳答案
不需要RxDataSources就可以将流绑定到表。rxcoca中已经有UITableView和UICollectionView的内置绑定,您可以在这里看到更多信息:
实际上,有一个例子说明了如何在没有RxDataSources
的情况下,在RxDataSources
回购协议中执行此操作
let data = Observable<[String]>.just(["first element", "second element", "third element"])
data.bind(to: tableView.rx.items(cellIdentifier: "Cell")) { index, model, cell in
cell.textLabel?.text = model
}
.disposed(by: disposeBag)
https://github.com/RxSwiftCommunity/RxDataSources#why