我有一个应用程序,它提示用户通过弹出文本框输入密码。文本框的键盘没有像以前版本的 iOS 那样显示。希望有人能指出我正确的方向。我相信这是处理密码输入功能的代码片段。
- (void)showPreferencesPasswordPrompt {
InputAlertView * inputAlert = [[InputAlertView alloc] initWithTitle:NSLocalizedString(@"browser_preferences_password_alert_title", nil)
message:NSLocalizedString(@"browser_preferences_password_alert_message", nil)
delegate:self
cancelButtonTitle:NSLocalizedString(@"cancel", nil)
otherButtonTitles:NSLocalizedString(@"ok", nil), nil];
inputAlert.tag = PREFERENCES_PASSWORD_TAG;
inputAlert.textField.secureTextEntry = YES;
[inputAlert show];
[inputAlert release];
}