10

如何指定我的UIAlertView文本字段键盘是数字键盘?我设置alertViewStyleUIAlertViewStylePlainTextInput.

4

1 回答 1

42

我认为您可以执行以下操作:

UITextField* tf = [alertView textFieldAtIndex:0];
tf.keyboardType = UIKeyboardTypeNumberPad;

请参阅UIAlertViewUITextInputTraits文档

于 2013-04-14T05:25:15.470 回答