現在、この UIAlertView を使用してログイン ポップアップを実行しています。
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Restricted"
message:@"Please Enter Code to Enable Fields"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Login"
, nil];
alert.alertViewStyle = UIAlertViewStyleSecureTextInput;
[alert show];
ただし、テキスト入力を通常のキーボードではなく数字キーボードにしたい
これを行う簡単な方法はありますか、それともカスタム UIAleartView の作成を検討する必要がありますか