I still need your help. I have this piece of code that doesn\'t want to work.
-(void)tableView:(UITableView *)_tableView commitEditingStyle:(UITableViewCellE
You might want to swap around
[tableView reloadData]; [tableView endUpdates];
to make it
[tableView endUpdates]; [tableView reloadData];
Alternatively please tell us what the error message for the SIGABRT is.