I have a tableView that I\'m inserting rows into at the top.
Whilst I\'m doing this I want the current view to stay completely still, so the rows only appear if you
@Dean,
You can change your code like this to prevent animating.
[tableView beginUpdates]; [UIView setAnimationsEnabled:NO]; // ... [tableView endUpdates]; [tableView setContentOffset:newOffset animated:NO]; [UIView setAnimationsEnabled:YES];