Is there a way to change the duration of [table beginUpdates]/[table endUpdates] animations?
[table beginUpdates]
[table endUpdates]
This is what I\'ve tried, with no luck:
Why don't you try UIView animation.
[UIView animateWithDuration:2 delay:0.2 options:UIViewAnimationOptionCurveEaseInEaseOut animations:^{ [self.tableView beginUpdates]; [self.tableView endUpdates]; } completion:^(BOOL finished) { // code }];