UITableView 的 AccessoryView 在多个单元格上重复使用

UITableView's AccessoryView Being Reused On Multiple Cells

我有一个 TableView,我想在它被点击时为一行添加复选标记。为此,我有:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

        NSString *selectedCountry = [self.files objectAtIndex:indexPath.row];
        NSString *Documents = [[NSBundle mainBundle] pathForResource:selectedCountry ofType:@"ppt" inDirectory:@"thepowerpoints"];
        //NSLog(@"%@", selectedCountry);
        UITableViewCell *newCell = [tableView cellForRowAtIndexPath:indexPath];

        if (newCell.accessoryType == UITableViewCellAccessoryNone) {
            if (self.chosen == nil) {
                self.chosen = [[NSMutableArray alloc] init];
            }
            newCell.accessoryType = UITableViewCellAccessoryCheckmark;
            [self.chosen addObject:Documents];
             NSLog(@"%@", self.chosen);

        }else {
            newCell.accessoryType = UITableViewCellAccessoryNone;
            [self.chosen removeObject:Documents];
        }

        [self.tableView deselectRowAtIndexPath:indexPath animated:YES];


}

我知道发生这种情况是因为 dequeueReusableCellWithIdentifier 关于 Cell 的类型。我的问题是,我可以更改什么,以便只有被点击的行得到复选标记,而不是所有这些其他单元格,一旦它们开始被重用?

将决定是否应检查单元格的代码移到 cellForRowAtIndexPath 中。保留对当前所选 index/item 的引用,然后在该单元格上设置复选标记。您可以将未选中的单元格设置为将附件视图设置为 none。