How to force the text field to begin editing?

ios, uitextfield

Solution

If you have named a UITextField givenVin, then you could try with:

[self.givenVin becomeFirstResponder];

Problem

I'm using an alert view and the options are to change one of the values that are wrong so what I want to do is when the user selects which value he wants to change the text field corresponding to the value start editing.

Original source

Related problems