I\'m trying the following with no luck. When the user click on a UiTextfield I need to change the keyboard view to the numeric view automatically, is this possible?
The UITextInputTraits protocol (which UITextField conforms to) has a keyboardType property of type UIKeyboardType.
UITextField
keyboardType
UIKeyboardType
myTextField.keyboardType = UIKeyboardTypeNumberPad;