我正在尝试在 UITableView 中选择的行中设置复选标记(放置在弹出视图中)。其实我有这样的事情:
-(NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// Check if current row is selected
Boolean isNowChecked = NO;
if([self.tableView cellForRowAtIndexPath:indexPath].accessoryType == UITableViewCellAccessoryCheckmark)
{
isNowChecked = YES;
}
if(isNowChecked)
{
[self.tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryNone;
}
else
{
[self.tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryCheckmark;
}
return indexPath;
}
结果我可以选择行,例如我触摸第一个项目然后我看到复选标记。当我向下滚动表格视图时,我看到我还检查了其他项目(编号 17、32)。当我取消选中我的第一个项目时,每个检查也会消失。
您对造成这种情况的原因有什么建议,我该如何避免?