有没有非私有 API 替代方案?

发布于 2024-09-24 21:03:26 字数 213 浏览 1 评论 0原文

我的应用程序最近因使用私有 API 而被拒绝(UIAlertViewaddTextField: 方法,我可以补充一下,该方法非常有用)。

是否有任何非私有替代 UIAlertView 的未记录 addTextFieldWithValue:label:

提前非常感谢!

My app was recently rejected due to using a private API (addTextField: method for UIAlertView, which is quite useful, might I add).

Is there any non-private alternative to UIAlertView's undocumented addTextFieldWithValue:label:?

Thanks SO much in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暗地喜欢 2024-10-01 21:03:26

创建文本字段作为 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];

create the text field as a subview of the 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];
野味少女 2024-10-01 21:03:26

查看 GitHub 上的开源代码,了解如何将 UITextFields 添加到 UIAlertView。

http://github.com/enormego/EGOTextFieldAlertView

Check out this Open Source code on GitHub for adding UITextFields to a UIAlertView.

http://github.com/enormego/EGOTextFieldAlertView

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文