我目前正在使用集合视图和可区分的数据源开发一个简单的 IOS 应用程序。
每次更新源数据时,我都会初始化视图控制器配置中的所有内容并调用 reloadView 函数。
一旦我调用 reloadView 函数,应用程序就会崩溃并出现以下错误。但前提是集合视图之前是空的。如果那里已经有物品,那么一切都很好。
Assertion failure in -[_UICollectionCompositionalLayoutSolver _queryClientForSectionDefintionForSectionIndex:]
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid section definition. Please specify a valid section definition when content is to be rendered for a section. This is a client error.'
这就是我的代码的样子:
private func configureHierarchy() {
let layout = collectionViewHelper.createLayout(structure: self.structure)
collectionView = UICollectionView(frame: view.bounds, collectionViewLayout: layout)
collectionView.delegate = self
collectionView.register(RecentCollectionViewCell.self, forCellWithReuseIdentifier: RecentCollectionViewCell.reuseIdentifier)
collectionView.register(OverviewCollectionViewCell.self, forCellWithReuseIdentifier: OverviewCollectionViewCell.reuseIdentifier)
collectionView.register(MessageItemCollectionViewCell.self, forCellWithReuseIdentifier: MessageItemCollectionViewCell.reuseIdentifier)
view.addSubview(collectionView)
}
private func configureDataSource() {
dataSource = UICollectionViewDiffableDataSource<SectionType, Int>(collectionView: collectionView) {
(collectionView: UICollectionView, indexPath: IndexPath, cellIndex: Int) -> UICollectionViewCell? in
let sectionItem = self.structure[indexPath.section]
switch sectionItem.type{
//Returns a collection view cell of the specific type
case .recent:
return getRecentItemCell(...)
case .overview:
return getOverviewItemCell(...)
case .message:
return getMessageItemCell(...)
default:
return nil
}
}
}
我像这样应用快照
private func applySnapshot(structure:[SectionItem]) {
var snapshot = NSDiffableDataSourceSnapshot<SectionType, Int>()
var itemOffset = 0
for structurItem in structure {
snapshot.appendSections([structurItem.type])
snapshot.appendItems(Array(itemOffset..<itemOffset + structurItem.items))
itemOffset += structurItem.items
}
dataSource.apply(snapshot, animatingDifferences: false)
}
我在我的配置中这样做了一次
structure = createStructure()
configureHierarchy()
configureDataSource()
applySnapshot(structure: createStructure())
这是我每次数据变化时调用的reload函数(如果之前没有显示数据就会报错)
func reloadView() {
structure = createStructure()
applySnapshot(structure: structure)
}
任何想法为什么会这样?已经非常感谢了!