我想弹出一个带有编辑器框的简单对话框,让用户输入一些值然后返回即可。我想知道iPhone SDK是否有这种支持。
谢谢。
最佳答案
我在以下位置找到了解决方案:
http://www.iphonedevsdk.com/forum/iphone-sdk-development/1704-uitextfield-inside-uialertview.html
这是对我有用的代码。
UIAlertView *myAlertView = [[UIAlertView alloc] initWithTitle:@"Your title here" message:@"this gets covered" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
UITextField *myTextField = [[UITextField alloc] initWithFrame:CGRectMake(12.0, 45.0, 260.0, 25.0)];
CGAffineTransform myTransform = CGAffineTransformMakeTranslation(0.0, 130.0);
[myAlertView setTransform:myTransform];
[myTextField setBackgroundColor:[UIColor whiteColor]];
[myAlertView addSubview:myTextField];
[myAlertView show];
[myAlertView release];
关于iphone - iPhone中有弹出式编辑器功能吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/283090/