gpt4 book ai didi

ios - 警报 View 中的 TextField 未在 iOS 7 上显示

转载 作者:可可西里 更新时间:2023-11-01 05:01:32 25 4
gpt4 key购买 nike

<分区>

在 iOS7 之前,我可以使用此代码向我的 UIAlertView 添加一个 UITextField(文本输入字段)。

UITextField *txtNewPassword = [[UITextField alloc] initWithFrame:secondTextFldRect];

txtNewPassword.delegate = self;
txtNewPassword.text = @"";
txtNewPassword.clearButtonMode = UITextFieldViewModeWhileEditing;
txtNewPassword.borderStyle = UITextBorderStyleRoundedRect;
txtNewPassword.autocapitalizationType = UITextAutocapitalizationTypeNone;
txtNewPassword.tag = kNewPasswordTxtFldTag;
[txtNewPassword setBackgroundColor:[UIColor whiteColor]];
[txtNewPassword setKeyboardAppearance:UIKeyboardAppearanceAlert];
[txtNewPassword setAutocorrectionType:UITextAutocorrectionTypeNo];
[txtNewPassword setPlaceholder:@"New password"];
[txtNewPassword setTextAlignment:UITextAlignmentLeft];
[txtNewPassword setSecureTextEntry:YES];
[alert addSubview:txtNewPassword];
[txtNewPassword release];

更新到 iOS7 后它停止工作 - 我的文本字段不再显示。更新我的代码的建议方法是什么?

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