アラートビューにテキストフィールドを追加するにはどうすればよいですか? アプリが編集をコミットする前に、ユーザーが上記のアラートビューでパスワードを入力して最初に認証する必要があるアプリを実行しようとしていますが、どうすればこれを行うことができますか? 検索したコードが機能しなくなったようです。ここにあります:
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Log In" message:@"Please enter your Password" delegate:self cancelButtonTitle:@"Log In" otherButtonTitles:@"Cancel", nil];
[alert addTextFieldWithValue:@"" label:@"Password"];
UITextField *tf = [alert textFieldAtIndex:0];
tf.clearButtonMode = UITextFieldViewModeWhileEditing;
tf.keyboardType = UIKeyboardTypeAlphabet;
tf.keyboardAppearance = UIKeyboardAppearanceAlert;
tf.autocapitalizationType = UITextAutocapitalizationTypeWords;
tf.autocapitalizationType = UITextAutocorrectionTypeNo;
エラーは言った
"No visible @interface for 'UIAlertView'
declares the selector 'addTextFieldWithValue:label:'"
on the [alert addTextFieldWithValue:@"" label:@"Password"];
また、alertview の [確認] ボタンにコードを配置する方法についてもお尋ねしたいと思います。