gpt4 book ai didi

ios - 如何在表格 View 单元格中添加 12 个文本字段并通过其标签值访问每个文本字段的文本?

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:15:38 25 4
gpt4 key购买 nike

我想在 UITableViewCell 中添加 12 个 UITextField(每行一个文本字段),并使用它的标签访问每个 UITextField 的文本。我该怎么做?

最佳答案

UITextField *textField = (UITextField *)[cell viewWithTag:1];
// 1 is your tag, and use textField.text to get the text in the textField.

您的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
//...
nameLabel.tag =1; // 1 is your nameLabel's tag
[tv setDelegate:self];
tv.tag = indexPath.row + 1; // set it to tv.tag = indexPath.row + 2; because 1 is your nameLabel's tag

UITextField *textField = (UITextField *)[cell viewWithTag:tv.tag];//
NSLog(@"%@",textField.text);

return cell;

关于ios - 如何在表格 View 单元格中添加 12 个文本字段并通过其标签值访问每个文本字段的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10637007/

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