Numeric keypad in IOS

1

I'm starting to program and I have some noob questions :) I wanted to know how to do in a UITextField to automatically upload the numeric keypad?

I've tried using the keyboardType but I'm not exactly sure how to apply the properties

Thank you

    
asked by anonymous 26.03.2014 / 20:52

2 answers

0

Take a look at this video, I know it's English but just follow the steps it shows you will do what you need.

link

Thanks

    
26.03.2014 / 21:37
1

I did not quite understand the question, but would not it just change directly on the storyboard?

If you want a way to change during the program:

[textField setKeyboardType:UIKeyboardTypeNumberPad];

I hope I understood and helped! rs

    
27.03.2014 / 17:42