I have a UIView with a UITextView as a subview. I want the keyboard to appear automatically with the view and call
Code:
[textView becomeFirstResponder]
but this does not work AND for some reason, it then takes 2 presses to get the keyboard to show. If I do not make the first responder call, 1 press will make the keyboard appear.
This same technique works correctly for a UITextField.
Am I missing something obvious?