我有一个相当普通的分组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];
}
但是当表格视图存在编辑模式时,没有行有复选标记附件。我什至尝试在仍处于编辑模式时手动重新加载行(如上面的代码所示)。
当表格视图退出编辑模式时,如何确保刷新行的附件?