Summary: In editing mode, I\'m deleting rows in a table view using a custom editing control, rather than the default red minus sign and delete confirmation butt
Try adding [tableView beginUpdates];
and [tableView endUpdates];
Try calling
[self.listOfItems removeObjectsAtIndexes:self.indexSetOfTickedRows];
at the end of the function instead of at the beginning.
Maybe setting the alpha on the cell works as suggested here. Not sure though. problems with animation when deleting the last row of a TableView in ios7