I’ve looked and i can’t seem to find any where on stack overflow some one that has had the same problem as me. So I use the following code:
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete);
}
and when i swipe the delete button appears, but when pressed it doesn’t do anything, what have i forgotten to do?
You need to actually delete your data after the
ifstatement. Currently, yourifstatement does nothing at all, because it just has a semi-colon after it.