I am new to iOS development and this forum from which I have learnt a great deal. Thank you.

In my app I am displaying a delete confirmation dialog from tableView:commitEditingStyle since I want the user to be absolutely sure they want to delete before they lose important data. I am experiencing a severe lag (in the simulator at least) when the user clicks the confirmation on the UIAlertView. After a few deletes I start to see "wait_fences: failed to receive reply: 10004003" in the debugger after the lag.

This is what I have tried:

Version 1 - laggy

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (editingStyle == UITableViewCellEditingStyleDelete)
    {
        self.deleteRowIndex = indexPath.row;
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Confirm Delete?" message:@"Are you sure that you want to permanently delete all details of this incident? IMPORTANT: Any photos which have not been saved to the camera roll will also be deleted permanently!" delegate:self cancelButtonTitle:@"No Way!" otherButtonTitles:@"Delete Incident", nil];
        [alert show];
    }
}

- (void)alertView:(UIAlertView *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
    // the user clicked one of the OK/Cancel buttons
    if (buttonIndex == 1)
    {
        Incident *incident = [incidents objectAtIndex:deleteRowIndex];

        // Delete photos
        while (incident.thumbnails.count > 0)
        {
            Thumbnail *thumbnail = (Thumbnail *)[incident.thumbnails anyObject];
            [delegate deleteFile:thumbnail.filename];
            [Database deleteThumbnail:thumbnail];
        }

        // Leave the contacts and vehicles in place in-case we ever wanted to use them

        [Database deleteIncident:incident];
        [Database save];
        incidents = [Database getIncidents];
        [self.tableView reloadData];
    }
}

Version 2 - laggy - the action sheet clicked code is the same, but I have tried to display the UIAlertView using performSelectorOnMainThread:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (editingStyle == UITableViewCellEditingStyleDelete)
    {
        [self performSelectorOnMainThread:@selector(confirmDelete:) withObject:indexPath waitUntilDone:NO];
    }
}

- (void)confirmDelete:(NSIndexPath *)indexPath
{
    self.deleteRowIndex = indexPath.row;
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Confirm Delete?" message:@"Are you sure that you want to permanently delete all details of this incident? IMPORTANT: Any photos which have not been saved to the camera roll will also be deleted permanently!" delegate:self cancelButtonTitle:@"No Way!" otherButtonTitles:@"Delete Incident", nil];
    [alert show];
}

The only way so far which works without any lag is to perform the delete directly within tableView:commitEditingStyle but I really would like an extra confirmation.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.