gpt4 book ai didi

iphone - 如何自定义UIAlertView?苹果会批准吗?

转载 作者:行者123 更新时间:2023-12-03 18:41:07 24 4
gpt4 key购买 nike

我使用自定义 UIAlertViewUITextField 从用户处获取密码。

我被告知此自定义 View 可能会导致我的应用程序被 Apple 拒绝;那是对的吗?如果是这样,我的自定义控件的适当替代品是什么?

最佳答案

您可以向 UIAlertView 添加文本字段

UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"title" message:@"msg" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:nil];
UITextField *txtField = [[UITextField alloc] initWithFrame:CGRectMake(12.0, 45.0, 260.0, 25.0)];
[alertView addSubview:txtField];
[alertView show];
[alertView release];

关于iphone - 如何自定义UIAlertView?苹果会批准吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5717292/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com