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

When inserting multiple UITableViewCells into a lengthy UITableView, what is the best way to make sure the insertion animation is on screen? Let's say the cells will be added to the bottom of the list, but right now the list extends beyond the current viewable area. I can't scroll to the bottom of the list before the insertion, since there is nothing to scroll to (I can only scroll to the last existing cell, not the to-be location of the last inserted cell). And attempting to do so afterwards seems to cancel out the insertion animation:

[_ingredientsTableView insertRowsAtIndexPaths:insertIndexes withRowAnimation:UITableViewRowAnimationAutomatic];
[_ingredientsTableView scrollToRowAtIndexPath:[insertIndexes lastObject] atScrollPosition:UITableViewScrollPositionNone animated:YES];

When I use this implementation, the scroll works just fine - but the cells are not animated into place. I think the fade-in animation has already run its course by the time my tableview arrives at the destination.

Would it be feasible to insert the cells but with an alpha of 0 (or some other hiding mechanism), scroll to the bottom cell, and then fade them in manually?

share|improve this question
When you are inserting cells at the bottom, the built in animation should handle making that happen properly. If you really want the user to see the animation, I'd suggest you call the scroll method, and then performSelector: to call a method that performs the insert after a short delay. – Michael Kernahan Nov 16 '12 at 1:23

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.