在UITableView中重用单元格

时间:2018-06-18 20:06:56

标签: ios swift uitableview prepareforreuse

我有自定义单元格' NewsCell'。它包含我的自定义视图' ImageMosaicView' (这只是UIView的子类)。我用它来显示Facebook中的帖子。我只是传递图像' url到ImageMosaicView的实例,然后加载它并显示。

我有一个问题。当我快速滚动我的tableView时,来自前一个单元格的图像会暂时出现在新单元格中,同时加载新图像。但我不知道它们是如何出现的,因为我提供了默认图像。 Here is an example

我该如何避免这种情况?

// ImageMosaicView.swift

class ImageMosaicView: UIView {
    @IBOutlet var imageViews: [UIImageView]!

    var urlStrings: [String] = [] {
    didSet {
        for imageView in imageViews {
            if let url = URL(string: urlStrings[i]) {
                imageView.loadImage(url: url)
            }
        }
    }

    // MARK: - Initialization

    required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
        let _ = loadViewFromNib()
    }

    // MARK: - Methods

    func loadViewFromNib() -> UIView {
        let bundle = Bundle.init(for: type(of: self))
        let nib = UINib(nibName: "ImageMosaicView", bundle: bundle)
        let view = nib.instantiate(withOwner: self, options: nil)[0] as! UIView
        view.frame = bounds
        view.autoresizingMask = [
            UIViewAutoresizing.flexibleWidth,
            UIViewAutoresizing.flexibleHeight
        ]
        addSubview(view)
        return view
    }
}

// How I provide urls for images:

// NewsViewController.swift. 'tableView(cellForRow:, indexPath:)

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let news = newsCollection[indexPath.row]
        let cell = tableView.dequeueReusableCell(withIdentifier: "NewsCell", for: indexPath) as! NewsCell
        //...
        cell.imageMosaicView.urlStrings = news.imageUrlsCollection
        //...
        return cell
    } else {
        return UITableViewCell()
    }
}

1 个答案:

答案 0 :(得分:1)

正确的方法是在prepareForReuse()类中配置NewsCell方法。

override func prepareForReuse() {
    super.prepareForReuse()

    imageView.image = //Default image
    //Whatever other things you need cleared.
}

每当tableView使单元出队时,都会调用此方法。因此,除非在cellForRowAt方法中将其返回之前手动更改数据,否则应在此处清除所有缓存的数据,否则这些数据将保留在出队的单元格中。