Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Anyway to hack into UICollectionView to call willDisplayCell delegate method, when displaying cell?

I need this for lazy loading, and I'm doing it nice with UITableView, but officially UICollectionView doesn't have that kind of delegate method.

So, any ideas? Thanks!

share|improve this question
Just of curiosity: Why is dequeueReusableCellWithReuseIdentifier:forIndexPath: not sufficient? Isn't that already lazy loading? I thought that cell will be displayed right after this method. – Masa Nov 5 '12 at 18:07

1 Answer

Hard to tell for your case without further details, but consider one of these:

a) Use UICollectionViewDelegate Protocol

collectionView:didEndDisplayingCell:forItemAtIndexPath:

b) In a custom class inherited from UICollectionViewCell override one of the methods:

  • applyLayoutAttributes:
  • prepareForReuse
  • didMoveToSuperview
  • didMoveToWindow

Then, you can cast self.collectionView to your collection view implementation and call your custom method:

[(MyCollection *)self.collectionView customMethodWithCell:self];
share|improve this answer
-collectionView:didEndDisplayingCell:forItemAtIndexPath: is called when the cell is no longer displayed. – Yang Nov 23 '12 at 16:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.