ios - UICollectionView 会在调用 "reloadItems"方法时重新创建单元格

标签 ios uicollectionview uicollectionviewcell uicollectionviewlayout

我的单元格有一个从网络下载的图像,因此我需要将单元格的高度设置为动态。 图片下载完成后,我将调用 self.collectionView.reloadItems(at: [indexPath]) 来触发委托(delegate)方法来设置新的高度。

但似乎reloadItems 方法会重新创建一个单元格,而不仅仅是重新布局一个原始的重用单元格。

enter image description here

我该如何解决这个问题?这是苹果的 UICollectionView 上的错误还是我做错了什么?

完整代码:

// code from ViewController
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {

    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: AnnounmentWallCollectionViewCell.cellIdentifier, for: indexPath) as! AnnounmentWallCollectionViewCell

    let announcement = announcements[indexPath.row]
    cell.collectionView = collectionView
    cell.setBanner(from: announcement.banner, indexPath: indexPath, completion: { [unowned self] (height) in
        self.bannersHeight[indexPath.row] = height
    })
    cell.setHTMLContent(announcement.content)
    contentsHeight[indexPath.row] = cell.htmlContentSize.height
    printD("indexPath: \(indexPath)")
    return cell
}

// code from cell
func setBanner(from url: URL?, indexPath: IndexPath, completion: @escaping (_ height: CGFloat)->()) {
    // URL(string: "https://i.imgur.com/qzY7BJ9.jpg")
    if let url = url {
        if let banner = SDImageCache.shared().imageFromDiskCache(forKey: url.absoluteString) {
            self.bannerView.isHidden = false
            self.bannerView.image = banner.scaleWidth(to: self.bounds.width - 32) // leading + trailling
            self.bannerHeight.constant = self.bannerView.image?.size.height ?? 1
            completion(self.bannerHeight.constant)
            printD("NO Download: \(indexPath)")
            let animationsEnabled = UIView.areAnimationsEnabled
            UIView.setAnimationsEnabled(false)
            self.collectionView.reloadItems(at: [indexPath])
            UIView.setAnimationsEnabled(animationsEnabled)
        } else {
            DispatchQueue.global().async {
                SDWebImageDownloader.shared().downloadImage(with: url, options: .useNSURLCache, progress: nil) { (banner, data, error, finished) in
                    DispatchQueue.main.async {
                        if let banner = banner {
                            SDImageCache.shared().store(banner, forKey: url.absoluteString, toDisk: true)
                            self.bannerView.isHidden = false
                            self.bannerHeight.constant = banner.scaleWidth(to: self.bounds.width - 32)?.size.height ?? 1
                            completion(self.bannerHeight.constant)
                            self.collectionView.reloadData()
                            printD("Download: \(indexPath): \(self.bannerHeight.constant)")
                        } else {
                            self.bannerView.isHidden = true
                            self.bannerHeight.constant = 1
                            completion(self.bannerHeight.constant)
                        }
                    }
                }
            }
        }
    } else {
        bannerView.isHidden = true
        bannerHeight.constant = 1
        completion(bannerHeight.constant)
    }
}

// code from delegate 
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
    let width = self.view.bounds.width
    let height = bannersHeight[indexPath.row] + contentsHeight[indexPath.row]
        + 1 // sticker
        + 11 // banner top
    printD("indexPath: \(indexPath): \(height)")
    return CGSize(width: width, height: height)
}

最佳答案

这不是错误。这就是为给定索引路径重新加载单元格的方式。如果只想更新布局也可以试试

[self.collectionView.collectionViewLayout invalidateLayout]

代替

self.collectionView.reloadItems(at: [indexPath])

然后在委托(delegate)方法中返回适当的大小。

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
return //whatever size that you want to return. 

我还强烈建议您缓存图像大小,以便下次使用,而不是下载/计算超过...

关于ios - UICollectionView 会在调用 "reloadItems"方法时重新创建单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53219612/

相关文章:

ios - 如何在 iOS 中突出显示或更改文本颜色?

ios - 从另一个 viewController 预加载 UIWebView?

ios - 为 UICollectionView 禁用向右滑动

iOS:如何创建具有不同大小和可点击单元格的collectionView

ios - 为什么 iOS6 中的 UICollectionView 框架比我定义的要小?

ios - 当选择另一个单元格按钮时取消选择 Collection View 单元格按钮

ios - 如何执行自定义单元格的方法

ios - 动画 UICollectionViewCell 时 bounds.size 和 frame.size 之间的相关性是什么

uicollectionviewcell - 在 iOS14 中调整 UICollectionViewCell 的大小

ios - Firestore 读取旧数据