2

我的应用程序最近由于使用了私有 API 而被拒绝(我可以添加的addTextField:方法UIAlertView非常有用)。

是否有任何非私人替代UIAlertView's undocumented addTextFieldWithValue:label:

提前非常感谢!

4

2 回答 2

3

创建文本字段作为 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];
于 2010-09-24T04:14:47.140 回答
0

在 GitHub 上查看此开源代码,以将 UITextFields 添加到 UIAlertView。

http://github.com/enormego/EGOTextFieldAlertView

于 2010-09-24T06:36:22.307 回答