我在更新UITableView
中的行时遇到问题。在我的tableView
中,只能选择一行中的一行(可能有几个部分)。因此,当用户选择行时,我以编程方式取消选择此部分中的其他行。取消选择的行可见时,一切正常。如果看不到任何取消选择的行,则仍会检查它。但是此行调用了didDeselectRowAtIndexPath
。为什么?如何解决这个问题?
- (NSIndexPath*)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath*)indexPath
{
// It is predefined group - only one row in section cab be selected
// Deselect other rows in section
for (NSIndexPath * selectedIndexPath in tagTableView.indexPathsForSelectedRows) {
if (selectedIndexPath.section == indexPath.section) {
[self tableView:tableView didDeselectRowAtIndexPath:selectedIndexPath];
[tableView deselectRowAtIndexPath:selectedIndexPath animated:YES];
}
}
return indexPath;
}
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tagTableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryNone;
}
答案 0 :(得分:1)
单元格的选定状态不应保存在UITableViewCell
中,而应保存在填充单元格的对象(模型)中。
由于tablecells被重用,因此state表示填充它们的模型的最后一个状态。您应该在填充单元格的对象中保持选定状态,保留选择indexPaths的数组。
在-tableView:cellForRowAtIndexPath:
中设置该单元格的正确状态。如果模型对象保持选定状态,则可以根据该属性设置状态,或者如果要保留带有选择索引路径的数组,请检查路径是否在数组中并相应地设置状态。