4

我有一个相当普通的分组UITableView,允许用户选择一个部门。当他们选择一行时,我更新附件视图以在新行上显示复选标记并将其从前一行中删除。

我还允许编辑表格视图。在编辑模式下,复选标记是隐藏的,这很好。但是,如果用户删除了当前选择(选中)部门的行,我需要以编程方式移动复选标记。

我尝试使用与使用新部门时添加和删除复选标记相同的方法:

- (void)deleteDepartmentAtIndex:(NSInteger)index
{
    //if the current item is using the deleted department, move the checkmark
    Department *dept = [self.departments objectAtIndex:index];
    if (self.item.department == dept)
    {
        UITableViewCell *noneCell = [self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForItem:self.departments.count inSection:0]];
        noneCell.accessoryType = UITableViewCellAccessoryCheckmark;
        [self.tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForItem:self.departments.count inSection:0]] withRowAnimation:UITableViewRowAnimationAutomatic];
    }

    //delete the department and save
    [dept.managedObjectContext deleteObject:dept];

    //delete the row
    [self.tableView deleteRowsAtIndexPaths:@[[NSIndexPath indexPathForItem:index inSection:0]] withRowAnimation:UITableViewRowAnimationFade];
}

但是当表格视图存在编辑模式时,没有行有复选标记附件。我什至尝试在仍处于编辑模式时手动重新加载行(如上面的代码所示)。

当表格视图退出编辑模式时,如何确保刷新行的附件?

4

1 回答 1

8

您应该accessoryType用于非编辑模式并editingAccessoryType用于编辑模式。这样,您不必清除复选标记或恢复复选标记进入和退出编辑模式。设置editingAccessoryTypeUITableViewCellAccessoryNone

当然,您需要确保cellForRowAtIndexPath:始终accessoryType为每一行设置正确的值。

编辑:

覆盖setEditing:animated:将允许您在离开编辑模式时重新加载选中的行(如果可见)。

于 2012-12-02T03:58:00.277 回答