gpt4 book ai didi

ios - UITextField .text 属性总是返回一个空字符串

转载 作者:行者123 更新时间:2023-11-29 02:09:46 24 4
gpt4 key购买 nike

我正在为我的 iOS 应用程序编写表单,而我的 UITextField 行为异常:

当表单处于更新状态(字段已填满)时,我可以使用 .text 属性编辑和获取新的输入文本(由用户键入)。但是当表单处于插入模式时,UITextField 最初是空的,我无法让用户使用 .text 属性键入文本,因为它总是返回一个空的用户输入的字符串。这是显示问题的视频:https://youtu.be/tPJZ3sC-IFU

{
__weak IBOutlet UITextField *txtLibelle; //linked by ctrl + drag to the storyboard
NSString *libelleTemp;
}
- (void)viewDidLoad {
[super viewDidLoad];

// ...

[txtLibelle addTarget:self
action:@selector(editingChanged:)
forControlEvents:UIControlEventEditingChanged];

// ...

}

-(void) editingChanged:(id)sender {
libelleTemp = txtLibelle.text;
// libelleTemp is set to @"" whatever the user has typed in when I'm in insert mode
}

-(void)initWithLib:(NSString *)lib {
libelleTemp = [NSString stringWithString:lib];
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [super tableView:tableView cellForRowAtIndexPath:indexPath];
if (indexPath.section == 0) {
txtLibelle.text = libelleTemp;
}

// ...

return cell;
}

initWithLib: 方法是从以前的 View Controller 中调用的,如下所示:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UIStoryboard *accueilNavSB = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
FicheAlerteTableViewController *vc = [accueilNavSB instantiateViewControllerWithIdentifier:@"ficheAlerte"];
NSString *libelle = @"";
[vc initWithLib:libelle];
[self.navigationController showViewController:vc sender:self];
}

我已经将该字段从 Storyboard重新链接到我的类(class),并且在 Debug模式下我的 UITextField 不是 nil。

我的文本字段位于静态 UITableView 中,因此我可以查看更新是否有效,将单元格滚动到屏幕外,然后将其滚动到屏幕上。

有谁知道为什么会这样以及如何解决这个问题?

最佳答案

您的代码中有一个错误。您没有使用正确的属性将文本加载到标签中。使用这个。

这对我有用。我在我的 Xcode 上对此进行了测试。

-(void) editingChanged:(id)sender {
//label1.text = field.text;
libelleTemp=field.text;
NSLog(@"text is %@",libelleTemp);
// libelleTemp is set to @"" whatever the user has typed in when I'm in insert mode
}

关于ios - UITextField .text 属性总是返回一个空字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29416170/

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