gpt4 book ai didi

ios - UICollectionViewCompositionalLayout 不能使用与 UICollectionViewDiffableDataSource 相同的部分吗?

转载 作者:行者123 更新时间:2023-12-05 04:57:20 25 4
gpt4 key购买 nike

我正在构建一个带有 Collection View 的 View Controller ,使用(有点)新的可区分数据源和可组合的 Collection View 布局。我制作了自己的 Section 和 Row 枚举,可以对我的模型(一组照片)的变化使用react,这会触发 applySnapshot 并且一切正常。

但是..在我的 createLayout 函数中我只有一个部分索引可以使用??这对我来说似乎很奇怪,为什么这两种技术不能更好地协同工作?一个使用 SectionIdentifierTypeItemIdentifierType(太棒了!),另一个仍然基于索引?呃。

我想要做的是这样的:Section.header 部分中的所有单元格都需要全屏宽度,并具有自动高度。 Section.photos 部分中的每个单元格都将获得固定大小。并且也可以有其他具有不同单元格大小的部分,并且某些部分可以是可选的。所以基于索引的系统真的很糟糕,不能硬编码第 0 节是标题而第 1 节是照片:顺序可以改变,事情可能是可选的,等等。

有什么更好的方法来处理这个问题?我当然可以在 View Controller 上存储数组 [Section] ,使用部分索引以这种方式获取 Section 案例,但是没有内置的方法来获取索引的部分标识符? 🤔 由于这两项技术同时发布,这似乎是合乎逻辑的事情。

class PhotosViewController: UIViewController {
enum Section: Equatable, Hashable {
case header
case photos
}

enum Row: Equatable, Hashable {
case header
case photo(Photo)
}

private lazy var dataSource = makeDataSource()
var photos: AnyPublisher<[Photo], Never>!

override func viewDidLoad() {
super.viewDidLoad()

collectionView.collectionViewLayout = createLayout()

photos
.sink(receiveValue: applySnapshot)
.store(in: &subscriptions)
}

private func makeDataSource() -> UICollectionViewDiffableDataSource<Section, Row> {
return UICollectionViewDiffableDataSource(collectionView: collectionView) { (collectionView, indexPath, item) -> UICollectionViewCell? in
switch item {
case .header:
let cell = collectionView.dequeueReusableCell(for: indexPath, cellType: ProfileHeaderCollectionViewCell.self)
return cell

case .photo(let photo):
let cell = collectionView.dequeueReusableCell(for: indexPath, cellType: PhotoCollectionViewCell.self)
cell.configure(photo: photo)
return cell
}
}
}

private func applySnapshot(photos: [Photo]) {
var snapshot = NSDiffableDataSourceSnapshot<Section, Row>()

let headerSection = Section.header
snapshot.appendSections([headerSection])
snapshot.appendItems([.header], toSection: headerSection)

let items = photos.map { Row.photo($0) }
let photosSection = Section.photos
snapshot.appendSections([photosSection])
snapshot.appendItems(items, toSection: photosSection)

dataSource.apply(snapshot, animatingDifferences: false)
}

private func createLayout() -> UICollectionViewLayout {
let layout = UICollectionViewCompositionalLayout { [unowned self] sectionIndex, _ in
// I have to work with a sectionIndex instead of a Section case?
}

return layout
}
}

最佳答案

幸运的是,您可以只使用 dataSource.snapshot().sectionIdentifiers[sectionIndex],而不是在单独的数组中跟踪部分标识符。

关于ios - UICollectionViewCompositionalLayout 不能使用与 UICollectionViewDiffableDataSource 相同的部分吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64452434/

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