Med*_*dwe 5 uikit uicollectionview uicollectionviewcell swift uicollectionviewdiffabledatasource
我正在使用 UICollectionViewDiffableDataSource 来填充我的 UICollectionView。通过 REST API 收到项目列表后,我创建了一个新快照并像这样应用它:
DispatchQueue.main.async {
var snapshot = NSDiffableDataSourceSnapshot<RegionSection, DiffableModel>()
snapshot.appendSections(RegionSection.allCases)
snapshot.appendItems(self.spotlights, toSection: .Spotlights)
snapshot.appendItems(self.vendors, toSection: .Vendors)
self.dataSource?.apply(snapshot, animatingDifferences: animated)
}
Run Code Online (Sandbox Code Playgroud)
在 cellProvider 中设置我的单元格时,我从 URL 异步加载图像。我注意到,第一个单元格会疯狂地浏览所有加载的图像,并最终显示与预期不同的图像。(例如,要由最后一个单元格显示的图像)。
我决定调查并发现cellProvider 闭包的调用次数是预期的两倍。此外, collectionView.dequeueReusableCell 函数在调用的前半部分表现得很奇怪,因为它每次都返回相同的单元格,即使 collectionView 中没有可以出队的单元格。
我的 cellProvider 关闭:
dataSource = UICollectionViewDiffableDataSource(collectionView: collectionView) { (collectionView, indexPath, entry) -> UICollectionViewCell? in
if let spotlight = entry as? Spotlight{
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "spotlightCell", for: indexPath) as! SpotlightCell
cell.nameLabel.text = spotlight.title
cell.subtitleLabel.text = spotlight.subtitle
cell.categoryLabel.text = spotlight.type.getDescription().uppercased()
cell.imageView.loadImage(fromUrl: spotlight.titlePictureUrl)
return cell
}else if let vendor = entry as? Vendor{
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "vendorCell", for: indexPath) as! VendorCell
cell.nameLabel.text = vendor.title
cell.assortmentLabel.text = vendor.assortmentDescription
cell.imageView.loadImage(fromUrl: vendor.titlePictureUrl ?? vendor.pictureUrls?.first ?? "")
if let distance = vendor.distance{
cell.distanceLabel.text = (distance/1000) < 1 ? (distance.getReadableString(withDecimalSeparator: ",", andDecimalCount: 0) + "m entfernt") : ((distance/1000).getReadableString(withDecimalSeparator: ",", andDecimalCount: 0) + "km entfernt")
}
return cell
}
return nil
}
Run Code Online (Sandbox Code Playgroud)
下面是一个例子:
我无法想象 dataSource 经常调用它的 cellProvider 闭包是预期的行为,我根本无法弄清楚为什么会发生这种情况,也无法在有关此的文档中找到任何内容。
我希望有人可以向我解释为什么会发生这种情况,如果这是预期行为,如何使用 DiffableDataSource 正确设置具有异步图像加载的单元格。
编辑:正如@Norb Braun 所建议的那样,对我有用的解决方案是对我的细胞使用绝对大小而不是估计大小!
| 归档时间: |
|
| 查看次数: |
293 次 |
| 最近记录: |