views:

27

answers:

1

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?

+1  A: 

Call [textField becomeFirstResponder] from the view's willAppear selector.

JosephH