gpt4 book ai didi

ios - Objective-C:获取以编程方式创建的文本字段的单个字符串

转载 作者:行者123 更新时间:2023-12-01 19:05:55 31 4
gpt4 key购买 nike

经过this query的解决方案后,当我打印mutableArray时,我在日志中得到了输出,如下所示。

*Date Project name :* Save button : (
Def
)

其中“Def”是在动态创建的文本字段中输入的文本。我想提取“Def”并显示在登录保存按钮上。这是代码
- (IBAction)save:(id)sender {
for(UITextField *field in self.scroll.subviews)
{
if([field isKindOfClass:[UITextField class]])
{
if([[field text] length] > 0)
{
NSMutableArray *mutableTextArray = [[NSMutableArray alloc] init];
[mutableTextArray addObject:field.text];
NSLog(@"Save button : %@", mutableTextArray);
//NSString *str = [str stringByAppendingString:[mutableTextArray objectAtIndex:0]];
//[self fetchStrings:str];
}
}
}
}

- (void) fetchStrings:(NSString*)enteredString
{
NSLog("%@", enteredString); //want 'def' to be displayed here
}

最佳答案

- (IBAction)save:(id)sender {
for(UIView *field in self.scroll.subviews)
{
if([field isKindOfClass:[UITextField class]])
{
if(((UITextField *)field).text.length > 0)
{
[mutableTextArray addObject:field.text];//mutableTextArray declare this locally in Interfacefile and then initialize the array in viewDidLoad

}
}
}
NSLog(@"%@", mutableTextArray);
}

在创建UITextField时,请设置Tag并像这样使用。希望对你有用

关于ios - Objective-C:获取以编程方式创建的文本字段的单个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19681189/

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