I have some simple UITextFields that bring up the Numberpad.
I would like to restrict the control the user has over input.
For example, one particular textField should not been allowed any value over 32.
Which parameter do I use with <32 to enable this?
Thanks
I would implement this UITextFieldDelegate method:
For consistency, you may also want to implement -textFieldShouldEndEditing: to return false when the value is invalid.