I have a UITextField for a username, and I set the keyboard type to:
uiUsername.keyboardType = UIKeyboardTypeNamePhonePad;
This way I can enter alphanumeric characters. But unfortunately the Shift key is disabled. Is there a way to enable the Shift key using this keyboard type?
I know, I could set a different keyboard type and check for legal characters, but this keyboard type is very clean - only the Shift key is missing.
Thanks for hints.