[self.tableView insertRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:row inSection:0]] withRowAnimation:UITableViewRowAnimationNone];
This works for me:
[UIView setAnimationsEnabled:NO]; [self.tableView beginUpdates]; [self.tableView insertRowsAtIndexPaths:indexPath withRowAnimation:UITableViewRowAnimationNone]; [self.tableView endUpdates]; [UIView setAnimationsEnabled:YES];
Hope this helps.