当我在一个表视图中使用多个自定义单元格时,我想知道RxSwift
是否有任何代码示例。因此,例如,我有两个部分,第一部分有10个单元格,类型为CellWithImage
标识符,第二部分有10个单元格,类型为CellWithVideo
标识符。
我创建的所有tuts和代码示例仅使用一种单元格类型,例如RxSwiftTableViewExample
感谢您的帮助
答案 0 :(得分:9)
它允许您使用具有多个部分的自定义单元格。 I've used this code for help
答案 1 :(得分:4)
如果有人感兴趣,请参阅我的实施内容。我有一个带有游戏列表的应用程序。根据游戏是否完成或仍在继续,我使用不同的单元格。这是我的代码:
在ViewModel中,我有一个游戏列表,将它们分成已完成/正在进行的游戏并将它们映射到SectionModel
let gameSections = PublishSubject<[SectionModel<String, Game>]>()
let dataSource = RxTableViewSectionedReloadDataSource<SectionModel<String, Game>>()
...
self.games.asObservable().map {[weak self] (games: [Game]) -> [SectionModel<String, Game>] in
guard let safeSelf = self else {return []}
safeSelf.ongoingGames = games.filter({$0.status != .finished})
safeSelf.finishedGames = games.filter({$0.status == .finished})
return [SectionModel(model: "Ongoing", items: safeSelf.ongoingGames), SectionModel(model: "Finished", items: safeSelf.finishedGames)]
}.bindTo(gameSections).addDisposableTo(bag)
然后在ViewController中,我将我的部分绑定到我的tableview,并使用不同的单元格。请注意,我可以使用indexPath来获取正确的单元格而不是状态。
vm.gameSections.asObservable().bindTo(tableView.rx.items(dataSource: vm.dataSource)).addDisposableTo(bag)
vm.dataSource.configureCell = {[weak self] (ds, tv, ip, item) -> UITableViewCell in
if item.status == .finished {
let cell = tv.dequeueReusableCell(withIdentifier: "FinishedGameCell", for: ip) as! FinishedGameCell
cell.nameLabel.text = item.opponent.shortName
return cell
} else {
let cell = tv.dequeueReusableCell(withIdentifier: "OnGoingGameCell", for: ip) as! OnGoingGameCell
cell.titleLabel.text = item.opponent.shortName
return cell
}
}
答案 2 :(得分:0)
您可以在没有RxDatasource的情况下设置多个自定义单元格。
//Register Cells as you want
tableView.register(CustomRxTableViewCell.self, forCellReuseIdentifier: "Cell")
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "BasicCell")
ViewModel.data.bind(to: tableView.rx.items){(tv, row, item) -> UITableViewCell in
if row == 0 {
let cell = tv.dequeueReusableCell(withIdentifier: "BasicCell", for: IndexPath.init(row: row, section: 0))
cell.textLabel?.text = item.birthday
return cell
}else{
let cell = tv.dequeueReusableCell(withIdentifier: "Cell", for: IndexPath.init(row: row, section: 0)) as! CustomRxTableViewCell
cell.titleLb.text = item.name
return cell
}
}.disposed(by: disposeBag)