gpt4 book ai didi

ios - 表格 View 确实选择了行

转载 作者:行者123 更新时间:2023-11-28 19:21:49 25 4
gpt4 key购买 nike

所以我有一个带有复选标记附件类型的 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 时,它只选择行然后不起作用。有人可以帮忙吗?

最佳答案

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

关于ios - 表格 View 确实选择了行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8313606/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com