views:

20

answers:

1

Hello, I want that my app starts with the keyboard and a courser in my UITextView, so that the user can instantly start to write. How can I do that?

Thanks for your help!

+1  A: 

Send your text view the -becomeFirstResponder message in your viewController's viewDidAppear: method.

Ben Gottlieb