Arcadian
Arcadian

Reputation: 4350

How to display a numeric keyboard in objective c ipad sdk

How do I display a numeric keyboard/pad on the iphone or ipad?

How can I display it in a popoverview only and not the standard way (at the bottom of the device)

Upvotes: 1

Views: 3520

Answers (3)

Oleh Kudinov
Oleh Kudinov

Reputation: 2543

Here you can see how it implemented:

https://github.com/lnafziger/Numberpad

or

https://github.com/azu/NumericKeypad

Cheers!!!!!!!!

Upvotes: 1

acecapades
acecapades

Reputation: 895

I know this question is last active 1 year ago, but this might help somebody out there.

You can try implementing this one https://github.com/azu/NumericKeypad. The coder implemented his own number pad buy subclassing the UITextField.

Upvotes: 1

GendoIkari
GendoIkari

Reputation: 11914

To choose the type of keyboard that is shown, check out the UITextInputTraits Protocol. Changing the keyboardType property will give you a numeric keyboard (set it to UIKeyboardTypeNumberPad).

I don't believe there is any built-in way to display the keyboard in a different location; you would have to create your own custom view that has the input keys / buttons that you need.

Upvotes: 1

Related Questions