非常简单的问题。
是否有通知或委托类型方法来判断何时显示UICollectionViewCell对象?
答案 0 :(得分:9)
对于iOS 8及更高版本,您可以使用 UICollectionViewDelegate 的 willDisplayCell
- (void)collectionView:(UICollectionView *)collectionView willDisplayCell:(UICollectionViewCell *)cell forItemAtIndexPath:(NSIndexPath *)indexPath
答案 1 :(得分:5)