10

かなり単純な質問。

UICollectionViewCell オブジェクトがいつ表示されるかを知らせる通知またはデリゲート型のメソッドはありますか?

4

2 に答える 2

14

iOS 8以降では、 UICollectionViewDelegatewillDisplayCellを使用できます

- (void)collectionView:(UICollectionView *)collectionView willDisplayCell:(UICollectionViewCell *)cell forItemAtIndexPath:(NSIndexPath *)indexPath

于 2014-12-26T11:45:09.250 に答える