Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a UICollectionView that contains some large UICollectionViewCells. These cells are so large that they completely fill the UICollectionView bounds and extend off screen. The problem is that the large cells are removed from the UICollectionView and queued for reuse while they are still displayed, resulting in a blank view. If I continue scrolling on the blank UICollectionView area, eventually the final portion of the cell appears and the start of the next cell appears in exactly the right place. I've effectively disabled cell reuse and the problem still occurs apparently because the UICollectionView thinks that the cell is no longer displayed since no corner is within the bounds of the collection view. To demonstrate make a collection view that is a single column and have a cell that is 10000px tall, when scrolling over the very tall cell it will disappear after about 1000px of content is scrolled off the screen and will reappear to display the final 1000px of content for the cell. You can download a simple prototype app that displays this problem at: http://jack.cox.s3.amazonaws.com/collectionviewprototype.zip

share|improve this question
I am having the same issue, not sure how to solve it, did you manage to fix it? – Tomasz ZabÅ‚ocki Nov 13 '12 at 23:00
I worked around it. The requirements of my app allowed me to just put it all into a single UIScrollView. I did open a bug report with Apple but have not heard anything back. – Jack Cox Nov 14 '12 at 21:47
@JackCox the download link isn't working now. Can you put it back up somewhere? Maybe stick it on Github? – mattjgalloway Dec 3 '12 at 10:54
1  
I have filed a radar for this as well, FWIW. – mattjgalloway Dec 3 '12 at 11:57
1  
i posted an hacky answer to @kai question – Jonathan Cichon Jan 10 at 14:00
show 4 more comments

1 Answer

This issue is being tracked as radar #12889164

share|improve this answer
Cant find that radar. Got a link? – nbransby Mar 5 at 19:14

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.