Reputation: 1571
I have a UITextView that is editable on a parent view along with a few other things. How can I set the UITextView to focus when the parent view shows up?
Upvotes: 4
Views: 1879
Reputation: 37505
Call [textField becomeFirstResponder]
from the view's willAppear
selector.
Upvotes: 6