In my app i have two textfields and i want the control from one text field to switch to second control as soon as the user is done entering the values in the first textfield automatically.
Does anybody has any idea on this?
Thanks,
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I assume “done entering” means the user hits return, … button on keyboard.
UITextField has delegate with UITextFieldDelegate protocol. And here’s method …
… you can implement it in this way …
If “done entering” is not return, … button on keyboard, you can implement this delegate’s method …
… to check UITextField’s text when user did type.