How would I scroll a UITableView to a specific position with an animation?
Currently I\'m using this code to jump to a position:
//tableController ->
I have two suggestions for you to investigate:
Are you running your app on the simulator or the iPhone itself? I have noticed some animations behave differently in the simulator.
Is it possible you are calling scrollToRowAtIndexPath:atScrollPosition:animated twice in quick succession? This can 'confuse' the animation. You should call this function only once while processing a given event.