Tiago Fael Matos
Tiago Fael Matos

Reputation: 2077

iPad numeric keyboard

I've been trying to get a numeric keypad on the iPad, but when I set a numeric pad on a TextField, I get a normal keyboard with numbers and ponctuation. But I found out several bugs on the simulator, I don't really know if this is another.

Is there a standard keypad on the iPad?

Upvotes: 13

Views: 11954

Answers (1)

Moshe
Moshe

Reputation: 58107

The iPad's "number' keyboard is exactly what you're seeing. There is no "iPhone identical" number only pad. I've worked around this by just using UIButtons and custom code in my app, Nippon. I've also created a background foe the button. It's sized for a modal view controller with the UIModalPresentationFormSheet style.

Here are the images, in case you want to use them:

Wide Key for iPad Wide Pressed Key for iPad

As for code, you force the UITextField to hide the keyboard and then you manually update the value when the button is pressed.

Upvotes: 9

Related Questions