gpt4 book ai didi

ios - 选择表行时如何从原型(prototype) UITableViewCell 获取控件?

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

我有 UITableView 和原型(prototype) UITableViewCell。在每一行中,我都有一个按钮(图像),每次选择该行时,我都必须将其设置为选中/未选中。我的原型(prototype)单元使用自定义类,设计是在 Interface Builder 中进行的。我尝试使用 this 的答案问题,但它不起作用。它告诉我 UITableViewCell 没有这样的属性,当我尝试使用我的自定义类时,它也会给我警告。如何解决这个问题?

我的代码如下:

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

///UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
cell.accessoryType = UITableViewCellAccessoryNone;
cell.self.btnCellSelect.selected = YES;

[self updateValues];

[tableView deselectRowAtIndexPath:indexPath animated:YES];

}

最佳答案

在访问它之前,您需要将单元格转换到您的类(class)。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];

YourCustomCellClass *cell = (YourCustomCellClass *)[tableView cellForRowAtIndexPath:indexPath];
cell.accessoryType = UITableViewCellAccessoryNone;
cell.self.btnCellSelect.selected = YES;
[self updateValues];
[tableView reloadData];
}

关于ios - 选择表行时如何从原型(prototype) UITableViewCell 获取控件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26882275/

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