objective c - How get the list of controls on a view with iPhone SDK? -


When I fill out the form I want to do something like a Safari app, so when the user looks forward to the keyboard and moves forward < / P>

You can textFieldShouldReturn: Take care of such behavior, It will return the user every time with your focus.

  - (BOOL) textFieldShouldReturn: (UITextField *) Textfield {if (textField == field 1) {[field 1 resigns first responder]; [Be field 2 first responder]; // do field1 work with text} and if (textField == field 2) {[field 2 resinfest responder]; [Field 3 First Responder]; // do field2 text} etc // etc)}  

Comments