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

  • Home
  • SEARCH
  • 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 6252077
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T13:44:00+00:00 2026-05-24T13:44:00+00:00

Ive had a look at many other questions regarding this (I know there are

  • 0

Ive had a look at many other questions regarding this (I know there are alot!), but none seem to satisfy my query.
Basically I have a view controller which includes two UITextFields.
The app is designed so that this page loads, the user inputs numbers, and then taps the background to get rid of the keyboard, and the values save. I then want this to be pre loaded in the text field every time the user navigates back to the page. I presume I will have to create another IBAction called saveData or something, but is there anyway to automatically save it when the background is tapped? Also to save the data I was thinking of using NSUserDefaults, are there any other methods to save data?
Any help is appreciated,
Michael
I use the following code for the editing and background tap part of my application:

-(IBAction) textFieldDoneEditing : (id) sender{

[sender resignFirstResponder];

}

-(IBAction) backgroundTap:(id) sender{

[self.textInputOne resignFirstResponder];
[self.textInputTwo resignFirstResponder];

}

  • 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-05-24T13:44:01+00:00Added an answer on May 24, 2026 at 1:44 pm

    NSUserDefaults will work nicely for this:

    -(IBAction) backgroundTap:(id) sender {
    
        NSString *inputOne = textInputOne.text;
        NSString *inputTwo = textInputTwo.text;
    
        NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
        [userDefaults setObject:inputOne forKey:@"InputOne"];
        [userDefaults setObject:inputTwo forKey:@"InputTwo"];
    
        [textInputOne resignFirstResponder];
        [textInputTwo resignFirstResponder];
        [sender resignFirstResponder];
    }
    

    then in - (void)viewDidLoad call back the stored NSUserDefaults:

    NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];   
    textInputOne.text = [userDefaults objectForKey:@"InputOne"];
    textInputTwo.text = [userDefaults objectForKey:@"InputTwo"];
    

    Should work fine

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

Sidebar

Related Questions

I've had a look at other questions similar to this one but I couldn't
I've had a look around for the answer to this, but I only seem
I've had a look around but can't seem to find any information on this.
http://jsfiddle.net/lxm7/Zzuq3/ I've had a look around at many similar solution but can't seem to
I've had a look through the many mod_rewrite examples, but I can't find out
I've had a look around to see if this has been answered, and there
I've had a look at the other algorithms for finding intersections between many-to-many line
I'm sure ive had this in school before, but i cant remember what is
I've had a look around SO and Google but can't find a definite and
I've had a look around on StackOverlow but haven't been able to find a

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.