I'm creating a Form with UITableView, I want that when i click over any part of my row, get the focus on the textfield so I can write on it. Right now to focus on the textfield (yellow space) i have to click only over the textfield (see image). Name is the title (not editable) 
Thanks a lot
Say you have a textField named myTextField that you want to have focused when selecting the first row in the table.
Do this in your didSelectRowAtIndexPath: method
if (indexPath.row == 0) {
[myTextField becomeFirstResponder];
}
In -didSelectRowAtIndexPath of the row, call [correspondingTextField becomeFirstResponder];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With