我目前正在使用这个 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