我的应用程序最近由于使用了私有 API 而被拒绝(我可以添加的addTextField:
方法UIAlertView
非常有用)。
是否有任何非私人替代UIAlertView
's undocumented addTextFieldWithValue:label:
?
提前非常感谢!
我的应用程序最近由于使用了私有 API 而被拒绝(我可以添加的addTextField:
方法UIAlertView
非常有用)。
是否有任何非私人替代UIAlertView
's undocumented addTextFieldWithValue:label:
?
提前非常感谢!
创建文本字段作为 UIAlertView 的子视图
// Ask for Username and password.
alertView = [[UIAlertView alloc] initWithTitle:_title message:@"\n \n \n" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
// Adds a username Field
utextfield = [[UITextField alloc] initWithFrame:CGRectMake(12.0, 45.0, 260.0, 25.0)];
utextfield.placeholder = @"Username";
[utextfield setBackgroundColor:[UIColor whiteColor]];
utextfield.enablesReturnKeyAutomatically = YES;
[utextfield setReturnKeyType:UIReturnKeyDone];
[utextfield setDelegate:self];
[alertView addSubview:utextfield];
// Show alert on screen.
[alertView show];
[alertView release];
在 GitHub 上查看此开源代码,以将 UITextFields 添加到 UIAlertView。