didSelectRowAtIndexPath:如何获取旧的indexPath以取消选择复选标记?

发布于 2024-11-26 02:22:53 字数 394 浏览 2 评论 0原文

如何取消选择 tableView 中先前选择的行?我找不到获取 oldIndexPath 的解决方案

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *newCell = [tableView cellForRowAtIndexPath:indexPath];
    if (newCell.accessoryType == UITableViewCellAccessoryNone) {
        newCell.accessoryType = UITableViewCellAccessoryCheckmark;
    }  
}

How to deselect previously selected row in tableView ?? I can't find solution to obtain oldIndexPath

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *newCell = [tableView cellForRowAtIndexPath:indexPath];
    if (newCell.accessoryType == UITableViewCellAccessoryNone) {
        newCell.accessoryType = UITableViewCellAccessoryCheckmark;
    }  
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌伤浅笑 2024-12-03 02:22:53

除非您存储以前的索引路径,否则您将无法检索它。
只需将其存储在 ivar 中,当您检测到选择了一行时,下次您将能够删除上一个单元格上的复选标记。

Unless you store the previous index path, you won't be able to retrieve it.
Just store it in an ivar, when you detect a row is selected, the next time you will be able to remove the checkmark on the previous cell.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文