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 7780521
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T18:55:30+00:00 2026-06-01T18:55:30+00:00

First posting to Stackoverflow, but have been searching for answers for sometime now. Learning

  • 0

First posting to Stackoverflow, but have been searching for answers for sometime now.
Learning Objective-C & XCode and have been creating simple projects.
Currently, I wanted to attempt a screen where user will enter in a 4 digit password code, where each individual digit in seperate text fields.
1) How to make cursor be in first text field, causing keyboard to come up automatically when app is started

2) How to make the text field only accept one digit. Can you do this in interface builder, in the attributes for the text field? Or do you have to do that programmatically?

3) How to make cursor jump to next text field after previous one is filled. Will this happen automatically when question #2 is done?

Would appreciate any help… thanks!

  • 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-01T18:55:31+00:00Added an answer on June 1, 2026 at 6:55 pm

    Ok here you go
    1. You must create 4 UITextFields in the IB say textField1, textField2, textField3, textField4. and call [textField1 becomesFirstResponder]; this will make the cursor in your textfield1.

    2.To make textfield accept only one digit, you will have to do this

        -(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
    
        textField.text  =   string;
        if ([string length] > 0) {
        if ([textField isEqual:textField1]) {
            [textField2 becomeFirstResponder];
    
        }else if([textField isEqual:textField2]) {
    
            [textField3 becomeFirstResponder];
    
        }else if([textField isEqual:textField3]) {
    
            [textField4 becomeFirstResponder];
    
        }else if([textField isEqual:textField4]) {
    
            [textField resignFirstResponder];
        }
    }
    return FALSE;
    

    }

    you will have to do this programmatically.

    3.same as ans2.

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

Sidebar

Related Questions

That's my first time posting on stackoverflow. I've been finding usefull answers on this
This is my first time posting to stackoverflow, but these threads have helped me
First time posting here after having great results searching for other answers on stackoverflow.
This is my first time posting on Stackoverflow, but I've been reading through many
this is my first time posting on StackOverflow but this site is awesome. Thanks
First up, sorry for the mega-posting of code but... I have the following DB
first time posting in StackOverflow. :D I need my software to add a couple
first time posting here. I'm using a loop to create 3 buttons, but my
this is my first time posting here, I have a question which I have
use this website a lot but first time posting. My program creates a number

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.