I've been trying to get a numeric keypad on the iPad, but when I set a numeric pad 开发者_JAVA百科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?
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:
As for code, you force the UITextField to hide the keyboard and then you manually update the value when the button is pressed.
精彩评论