iOS Question UIKeyboardTypeNumberPad help

rfresh

Well-Known Member
Licensed User
Longtime User
I'm trying to set my iPad keyboard type to show the number pad but I always see the standard iPad keyboard.

Do I have to do something else?

Thank you...

B4X:
    ' InputType:
    ' 0 = UIKeyboardTypeDefault
    ' 1 = UIKeyboardTypeASCIICapable
    ' 2 = UIKeyboardTypeNumbersAndPunctuation
    ' 3 = UIKeyboardTypeURL
    ' 4 = UIKeyboardTypeNumberPad
    ' 5 = UIKeyboardTypePhonePad
    ' 6 = UIKeyboardTypeNamePhonePad
    ' 7 = UIKeyboardTypeEmailAddress
    ' 8 = UIKeyboardTypeDecimalPad
    ' 9 = UIKeyboardTypeTwitter
    '10 = UIKeyboardTypeWebSearch
    '11 = UIKeyboardTypeAlphabet
    '12 = UIKeyboardTypeASCIICapable
    TextFieldBEWWeight.KeyboardType = 5
 
Top