gpt4 book ai didi

iphone - 如何编辑文本字段中的标签?

转载 作者:行者123 更新时间:2023-11-28 22:43:37 25 4
gpt4 key购买 nike

我从前一个 View Controller 获取标签并在下一个 View Controller 中显示该标签,但我想让它们在文本字段中编辑,我将这些标签设置为用户交互已启用,但它仍然无法正常工作

 -(void)setDataOnForm
{
nameLbl.text=name;
emailLbl.text=email;

imageSelect.image=[MyCommonFunctions getImageFromDocuments:image];

NSLog(@"image %@", image);

}

这是我以前的 View Controller

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
user *worddc=[dataArray objectAtIndex:[indexPath row]];
profileVC *pvc =[[profileVC alloc]initWithNibName:@"profileVC" bundle:nil];
[self.navigationController pushViewController:pvc animated:YES];
pvc.getid=worddc.user_id;
pvc.name=worddc.name;
pvc.email=worddc.email;
pvc.image=worddc.image;
[pvc setDataOnForm];

}

最佳答案

如果要编辑文本,请使用 UITextField 而不是 UILabel。

关于iphone - 如何编辑文本字段中的标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13815326/

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