iPhone Telephone App -> Recents -> All/Missed Animation How can I implement that cell adding/removing animation in my own UITableView? I tried the following:
[tableController.aTable beginUpdates];
[tableController.aTable deleteSections:self.sectionIndexes withRowAnimation:UITableViewRowAnimationFade];
[tableController.aTable deleteRowsAtIndexPaths:smartListIndexes withRowAnimation:UITableViewRowAnimationFade];
[tableController.aTable endUpdates];
But that is not the same animation. I tried all UITableViewRowAnimaiton properties. Non is the exact same one. Can anyone help?