UICollectionView + SDWebImage + Cell reuse

前端 未结 5 584
再見小時候
再見小時候 2021-01-06 03:39

I have a UICollectionView with a custom UICollectionViewCell class which adds another UIView (thumbnailView) to its contentView. This other view has a UIImageView property (

5条回答
  •  萌比男神i
    2021-01-06 04:10

    The UITableViewDelegate and UICollectionViewDelegate method -tableView:didEndDisplayingCell:forRowAtIndexPath: is the best place to update your UITableView | UICollectionView cells after it has disappeared. You can cancel the cell downloads there.

提交回复
热议问题