gpt4 book ai didi

iphone - 从文本字段中检索文本

转载 作者:行者123 更新时间:2023-11-29 13:44:03 25 4
gpt4 key购买 nike

我有

 if(indexPath.row==0)
{
cell.lbl.text=@"abc";
cell.txtField.placeholder=@"abc"
cell.txtField.tag=104;
delegate.copyNameString = [NSString stringWithFormat:@"%@", [cell.txtField text]];
} else if(indexPath.row==1)
{
cell.lbl.text=@"home";
cell.txtField.placeholder=@"xyz";
cell.txtField.tag=105;
}

我正在尝试检索文本字段中第 0 行和第 1 行的文本。

我正在尝试根据标签检索文本字段中的文本。我如何检索文本?

谢谢

最佳答案

您可以像这样检索您的文本字段,当您获得所需的文本字段时,然后获取文本。

    UITableViewCell *myCell = (UITableViewCell *)[*yourTableViewName* cellForRowAtIndexPath:*passindexPath*]];
UITextField *mytextFiled = (UITextField *)[myCell viewWithTag:104];

关于iphone - 从文本字段中检索文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8178906/

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