1

对于 iPad 应用程序,我想将键盘类型从默认更改为 UIKeyboardTypeDecimalPad。但它只显示我的默认值。我正在使用 iOS 6

4

1 回答 1

2

对于您的 UITextfield,请在代码中使用:

myTextField.keyboardType=UIKeyboardTypeDecimalPad;

在 iOS 5.1 或 6.1 iPad 中,只有这些键盘可用:

  • UIKeyboardTypeASCIICapable
  • UIKeyboardTypeNumbersAndPunctuation
  • UIKeyboardTypeURL
  • UIKeyboardTypeNumberPad
  • UIKeyboardTypeNamePhonePad
  • UIKeyboardTypeEmailAddress
  • UIKeyboardTypeTwitter
于 2013-08-14T11:12:14.847 回答