Yazzmi
Yazzmi

Reputation: 1571

Set UITextView in focus

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

Answers (1)

JosephH
JosephH

Reputation: 37505

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

Upvotes: 6

Related Questions