gpt4 book ai didi

iphone - UITableView DidSelectRowAtIndexPath?

转载 作者:IT王子 更新时间:2023-10-29 07:54:52 27 4
gpt4 key购买 nike

我有一个包含一些项目(全是文本)的表格 View 。当用户单击该行时,我希望将该单元格中的文本添加到数组中。

如何从单元格中抓取文本?

我已经有:

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

}

我可以使用简单的一行来从用户点击的单元格中抓取文本吗?

最佳答案

使用UITableView's cellForRowAtIndexPath:

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
NSString *cellText = cell.textLabel.text;
}

关于iphone - UITableView DidSelectRowAtIndexPath?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8404922/

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