我找不到任何答案,所以我要创建这个主题。
我在UI视图中有一个表视图,通过我的viewController我绑定主视图并注册并尝试绑定单元格,所以我这样做了:
private func bindCells() {
viewModel.address.asObservable()
.bind(to: TableView.rx.items(cellIdentifier: AccountShippingCell.Identifier, cellType: AccountShippingCell.self)) {
row, address, cell in
cell.address = address
}.disposed(by: disposeBag)
viewModel.payment.asObservable()
.bind(to: TableView.rx.items(cellIdentifier: AccountPaymentCell.Identifier, cellType: AccountPaymentCell.self)) {
row, payment, cell in
cell.payment = payment
}.disposed(by: disposeBag)
}
但它一直关闭我的Xcode崩溃。我明白,当传递标识符+单元格类型时,我已经使它与众不同了。但它似乎在竞争注册。
我做错了什么?