In my application i need to allow users input only numbers. How can i allow UITextField to receive only numbers from user?
|
The characters in this examples are allowed, so if you dont want the user to use a character, exclude it from
|
|||||||
|
|
How are you defining your
This will only give the users the option to input numbers to begin with. See the doc on UITextInputTraits. |
|||||||
|
|
I prefer the following solution that actually prevents any any input except from numbers and backspace. Backspace for some reason is represented by an empty string and could not be used unless empty string returns YES. I also popup an alert view when the user enters a character other that numbers.
|
|||
|
|
|
One thing you can do is to show the numbers key pad and beside text field or some where else add a dynamic button to hide the keyboard. |
|||
|
|
|
you guys might flame.. but this worked for me.. only numbers (including negatives), and backspace.
|
||||
|
|
|
Here is my solution applying algebra of sets with the method
Note: according to Apple Developer Library, It's preferable cache the static However I prefer to let the user to input any character and validate the value in the method |
||||
|
|
|
|||
|
|


