gpt4 book ai didi

iphone - 如何从自定义 UITableview 中检索有关选择单元格的数据

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

可能是个愚蠢的问题。

我有一个包含多个单元格的 UITableview。在每个单元格中,我都显示了一些数据。我没有使用单元格的文本属性来显示数据。相反,我的单元格内有一个自定义标签,用于显示文本。我的问题是:当我点击单元格时,我需要从单元格中检索数据。我该怎么做。

if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];


UILabel *CellTextlabel = [[UILabel alloc] init];
CellTextlabel.tag = 222;
[CellTextlabel setFrame:CGRectMake(40, 5, 200, 20)];
[cell.contentView addSubview:CellTextlabel];
[CellTextlabel release];
}


UILabel *editCellTextlabel = (UILabel *)[cell.contentView viewWithTag:222];
editCellTextlabel.font = [UIFont boldSystemFontOfSize:18];
editCellTextlabel.text = contact.lastName;

最佳答案

在您的 didSelectRowAtIndexPath 方法中,您可以按如下方式进行:

UITableViewCell *cell = (UITableViewCell *)[self.tableViecellForRowAtIndexPath:indexPath];         
UILabel *textLabel = (UILabel *)[cell viewWithTag:222];

现在您可以使用 textLabel.text 检索单元格的 UILabel 中的数据

关于iphone - 如何从自定义 UITableview 中检索有关选择单元格的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8953597/

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