Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8779409
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T19:46:47+00:00 2026-06-13T19:46:47+00:00

So i have Two Text Box , lets say , TextBox1 and TwoBox2 .

  • 0

So i have Two Text Box , lets say , TextBox1 and TwoBox2 .
On Viewdidload TextBox1 i am using

 [self.TextBox1 becomeFirstResponder];

Now how to move the Cursor to TextBox2 ,when i press Next Button in Virtual Keyboard

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T19:46:48+00:00Added an answer on June 13, 2026 at 7:46 pm

    In Cocoa for Mac OS X you have the next responder chain, where you can ask the text field what control should have focus next. This is what makes tabbing between text fields work. But since iPhone do not have a key board, only touch, this concept has not survived the transition to Cocoa Touch.

    This can be easily done anyway, with two assumptions:

    All “tabbable” UITextFields are on the same parent view.
    Their “tab-order” is defined by the tag property.
    Assuming this you can override textFieldShouldReturn: as this:

    -(BOOL)textFieldShouldReturn:(UITextField*)textField;
    {
     NSInteger nextTag = textField.tag + 1;
      // Try to find next responder
     UIResponder* nextResponder = [textField.superview viewWithTag:nextTag];
     if (nextResponder) {
      // Found next responder, so set it.
      [nextResponder becomeFirstResponder];
     } else {
     // Not found, so remove keyboard.
      [textField resignFirstResponder];
     }
     return NO; // We do not want UITextField to insert line-breaks.
     }
    

    Add some more code, and the assumptions can be ignored as well.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two questions about using a BackgroundWorker: 1)Lets say you have Function A
I have two span's which contain a HTML text box with same id say
I have the following code to validate two text box entries to make sure
Ok, I have two related lists on my linux box in text files: /tmp/oldList
I have a text box with event name and two calendar controls to get
So, lets say I have two nearly identical classes in C# and Ruby: C#
If I have two dates 20-4-2010 and 22-4-2010 in two text box and I
I have two aspx page on my application. From the first one, lets say
I have two text box. If 1 of the textbox.text is empty, the MessageBox
I have two search options: 1. On Master Page there is a text box

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.