Question

For iPad application I want to change type of keyboard from default to UIKeyboardTypeDecimalPad. But it shows me default only. And I am using iOS 6

Était-ce utile?

La solution

For your UITextfield use this in code:

myTextField.keyboardType=UIKeyboardTypeDecimalPad;

In iOS 5.1 or 6.1 iPad only these keyboard are available:

  • UIKeyboardTypeASCIICapable
  • UIKeyboardTypeNumbersAndPunctuation
  • UIKeyboardTypeURL
  • UIKeyboardTypeNumberPad
  • UIKeyboardTypeNamePhonePad
  • UIKeyboardTypeEmailAddress
  • UIKeyboardTypeTwitter
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top