gpt4 book ai didi

ios - 从 TableViewCell 返回一个值

转载 作者:行者123 更新时间:2023-11-28 20:08:05 25 4
gpt4 key购买 nike

如果我点击 TableViewCell,我可以返回单元格编号:

indexPath.row+1

我要返回的是单元格中其中一个标签的值。这避免了我必须并行创建一个数组并从中提取答案。

可以吗?

最佳答案

您可以使用 cellForRowAtIndexPath: 通过传入其索引路径来获取对 TableView 中特定单元格的引用,这在 didSelectRowAtIndexPath: 中已知。一旦您引用了这个单元格,您就可以访问它的任何您想要的属性。下面是一个示例,说明如何从每个单元格的标签中获取文本。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

NSString *labelText = cell.textLabel.text;
NSString *detailText = cell.detailTextLabel.text;
}

关于ios - 从 TableViewCell 返回一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21309608/

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