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?
scrollmethod, and thenperformSelector:to call a method that performs theinsertafter a short delay. – Michael Kernahan Nov 16 '12 at 1:23