最初,该应用程序显示一个部分的 UIViewCollection,然后在接收到内容后出现新的部分。用户滚动集合,新的部分添加到集合的底部。
我使用 MVVM,因此在我的 ViewModel 中,我向内容数组 (model.content) 添加了一个新部分,然后通知绑定到 collectionView.rx.items(dataSource: self.dataSource) 的发布者。
因此,每次我添加该部分时,集合都在闪烁,所有单元格都在重新加载,这使得可怕的用户体验一切都在闪烁、闪烁、图片消失和出现。有没有办法不重新加载所有集合而只重新加载差异。我认为默认情况下它应该像这样工作。也许通知 BehaviorSubject 的方法是错误的想法?
我也尝试使用 RxTableViewSectionedAnimatedDataSource,但在添加每个新部分后,所有内容都会消失并将用户移动到集合视图的最顶部。
请知道如果我只是在底部添加一个部分,为什么要重新加载所有集合,如何防止它?
typealias ContentDataSource = RxCollectionViewSectionedReloadDataSource<ContentSection>
class ContentViewController: BaseViewController<ContentViewModel> {
func setupBindings() {
viewModel?.sectionItemsSubject
.bind(to: collectionView.rx.items(dataSource: self.dataSource))
.disposed(by: self.disposeBag)
}
}
class ContentViewModel: BaseViewModel<ContentModel> {
lazy var sectionItemsSubject = BehaviorSubject<[ContentSection]>(value: model.content)
func updateGeneratedSection(_ section: ContentSection) {
model.content.append(item)
sectionItemsSubject.onNext(self.model.content)
}
}
struct ContentModel {
var content: [ContentSection] = []
}
编辑:
struct ContentSection {
var id: String
var items: [Item]
var order: Int
}
extension ContentSection: SectionModelType {
typealias Item = ItemCellModel
init(original: ContentSection, items: [ItemCellModel]) {
self = original
self.items = items
}
}
struct ItemCellModel {
let id: String
let img: String
init(id: String, img: String) {
self.id = id
self.img = img
}
}