添加到UITextField的值

时间:2014-09-11 13:05:56

标签: uitextfield

我正在尝试根据警报窗口上的“确定”按钮显示UITextField。因此,当用户按下OK按钮时,另一个文本框应该出现在用户可以输入配置文件名称的位置。但是,基于下面的代码,我看到在单击OK后立即继续说“没有指定配置文件名称”,因为它发现profile.txt为空。下面是一段代码,显示弹出警报,提示用户保存带有配置文件名称的配置文件。

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Hello, User ! Save Profile" message:@"Provide a profile Name" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK" ,nil];

profileName = [[UITextField alloc] initWithFrame:CGRectMake(12.0, 45.0, 2600.0, 25.0)];

[profileName setBackgroundColor:[UIColor whiteColor]];

[alert addSubview:profileName];

CGAffineTransform myTransform = CGAffineTransformMakeTranslation(0.0, 130.0);

[alert setTransform:myTransform];

[alert show];

[alert release];

感谢您的回复!

提前致谢!

1 个答案:

答案 0 :(得分:0)

我能够在iOS7上使用

alert.alertViewStyle = UIAlertViewStylePlainTextInput; profileName = [alert textFieldAtIndex:0];

由于