かなり単純な質問。
UICollectionViewCell オブジェクトがいつ表示されるかを知らせる通知またはデリゲート型のメソッドはありますか?
かなり単純な質問。
UICollectionViewCell オブジェクトがいつ表示されるかを知らせる通知またはデリゲート型のメソッドはありますか?
iOS 8以降では、 UICollectionViewDelegateのwillDisplayCellを使用できます
- (void)collectionView:(UICollectionView *)collectionView willDisplayCell:(UICollectionViewCell *)cell forItemAtIndexPath:(NSIndexPath *)indexPath
意思:
-[<UICollectionViewDataSource> collectionView:cellForItemAtIndexPath:]
やりました:
-[<UICollectionViewDelegate> collectionView:didEndDisplayingCell:forItemAtIndexPath:]