I'm trying to implement UITableViewRowAnimation
like this:
[self.AroundersTableView beginUpdates];
[self.Arounders removeObjectAtIndex:cellRowToDelete];
[self.AroundersTableView deleteRowsAtIndexPaths:indexPathesToDelete withRowAnimation:UITableViewRowAnimationFade];
[self.AroundersTableView endUpdates];
The row is being deleted, but there is no animation.
Any idea what is going wrong?