所以我有一个带有复选标记附件类型的tableView并且我有这样的方法:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSUInteger newRow = [lastIndexPath row];
    NSUInteger oldRow = (lastIndexPath != nil) ? [lastIndexPath row] : -1;

    if (newRow != oldRow) {
        UITableViewCell *newCell = [tableView cellForRowAtIndexPath:indexPath];
        newCell.accessoryType = UITableViewCellAccessoryCheckmark;

        UITableViewCell *oldCell = [tableView cellForRowAtIndexPath:lastIndexPath];
        oldCell.accessoryType = UITableViewCellAccessoryNone;
        lastIndexPath = indexPath;
    }
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
}


它似乎第一次可以正常工作,但是当我第二次选择该行时,它会把我扔出去,并说EXC_BAD_ACCESS。当我将模拟器切换到4.3时,它只选择该行,然后不起作用。有人可以帮忙吗?

最佳答案

如果您为self.lastIndexPath = indexPath声明了@property,请使用lastIndexPAth

10-08 03:18