UITableView-删除部分中的最后一个单元格

时间:2012-01-28 05:48:47

标签: ios uitableview delete-row

这是我在UITableView中删除单元格的代码:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    [tableView beginUpdates];

    if([tableView numberOfRowsInSection:[indexPath section]] > 1) {
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] 
            withRowAnimation:UITableViewRowAnimationFade];
    } else {
        [tableView deleteSections:[NSIndexSet indexSetWithIndex:[indexPath section]] 
            withRowAnimation:UITableViewRowAnimationFade];
    }

    [tableView endUpdates];
}

在删除单元格之前还有一些数据正在更新,但我确信它正在正确更新,因为每次删除单元格时,数据源数组的count总是少一个。这是预期的行为。但出于某种原因,每当我删除一个部分中的最后一个单元格时,我都会得到'Invalid update: invalid number of rows in section 0. The number of rows contained in an existing section after the update (0) must be equal to the number of rows contained in that section before the update (1), plus or minus the number of rows inserted or deleted from that section (0 inserted, 0 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out).'

令人难以置信的是令人沮丧,特别是因为从我在互联网上找到的东西,我正确地做到了这一点。也许我需要睡觉,已经有一段时间了。这里有什么想法吗?

解决方案:

- (NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section {
    if(tableIsEmpty) {
        //**this** line was the culprit- returning zero here fixed the problem
        return 0;
    } else if(section == ([tableView numberOfSections] - 1)) {
        //this is the last section- it only needs one row for the 'Delete all' button
        return 1;
    } else {
        //figure out how many rows are needed for the section
    }
}

1 个答案:

答案 0 :(得分:4)

您的问题在于numberOfRowsInSection:方法的实施。你的删除似乎没问题。当您删除行时,我认为您无法更新用于返回numberOfRowsInSection:方法中的行数的源。由于那里的不一致,你得到错误。请分享该代码。