gpt4 book ai didi

ios - 如何只更新 RxDataSources 中已更改的单元格而不是全部单元格?

转载 作者:行者123 更新时间:2023-11-28 15:03:50 26 4
gpt4 key购买 nike

我正在使用 RxSwiftRxDataSources 创建 TableView 。

但我不想在只更改一个单元格时重新加载所有单元格。

如何使用 RxSwift 实现这一点?

当前解决方案。

private let dataSource = RxTableViewSectionedReloadDataSource<VehicleCheckDeteilsSectionModel>()

单元配置。

dataSource.configureCell = {[weak self] (_, tableView: UITableView, indexPath: IndexPath, item: VehicleCheckDeteilsCellModel) in
return self?.deteilsCellFactory(in: tableView, for: indexPath, with: item) ?? UITableViewCell()
}

数据集。

let sectionModelObserver = viewModel?.tableSectionModel.asObservable().observeOn(MainScheduler.instance).share()
sectionModelObserver?.bind(to: self.deteilsTableView.rx.items(dataSource: dataSource)).disposed(by: disposeBag)

最佳答案

VehicleCheckDeteilsSectionModel 上实现 AnimatableSectionModelType 并使您的数据源 RxTableViewSectionedAnimatedDataSource

关于ios - 如何只更新 RxDataSources 中已更改的单元格而不是全部单元格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48692849/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com