gpt4 book ai didi

ios - 使附件类型成为所选单元格的复选标记

转载 作者:行者123 更新时间:2023-11-29 10:33:03 25 4
gpt4 key购买 nike

我正在尝试使选定的单元格(属于自定义 UITableViewCell)具有复选标记。我尝试了以下代码:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
CategorieCell *customCell = [tableView dequeueReusableCellWithIdentifier:@"cellID" forIndexPath:indexPath];

if (customCell.accessoryType == UITableViewCellAccessoryDisclosureIndicator) {
customCell.accessoryType = UITableViewCellAccessoryCheckmark;
}
else
{
customCell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
}

但是当我选择一个单元格时,没有任何反应。

最佳答案

您的错误是您将新的自定义单元格出队。相反,您必须找出实际选中的单元格。将第一行更改为:

CategorieCell *customCell = (CategorieCell *)[tableView cellForRowAtIndexPath:indexPath];

应该是这样。

关于ios - 使附件类型成为所选单元格的复选标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28566803/

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