Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've saved some input from a UITextField using the following code:

 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    [defaults setObject:myTextField.text forKey:@"myTextFieldKey"];
    [defaults synchronize];

I'd like to display this saved text on a UILabel in another view controller.

I tried this:

  myLabel.text = [[NSUserDefaults standardUserDefaults] objectForKey:@"myTextFieldKey"];

but nothing displays. Any help with this would be great. thanks.

share|improve this question
Check your outlets. Maybe myLabel or myTextField is nil? – Eimantas Sep 26 '11 at 8:26

4 Answers

up vote 4 down vote accepted

Well the loading and saving code is correct, so it looks like the problem is something else.

Try this to debug:

NSString *aValue = [[NSUserDefaults standardUserDefaults] objectForKey:@"myTextFieldKey"];
NSLog(@"Value from standardUserDefaults: %@", aValue);

NSLog(@"Label: %@", myLabel);
myLabel.text = aValue;

Now you will see if the value retriever from the NSUserDefaults is set and if the label is assinged.

share|improve this answer
thanks so much. that's solved it for me. – hanumanDev Sep 26 '11 at 8:34
 [[NSUserDefaults standardUserDefaults] setValue:myTextField.text forKey:@"myTextFieldKey"];
 [[NSUserDefaults standardUserDefaults] synchronize];

After that use valueForKey not objectForKey:

myLabel.text = [[NSUserDefaults standardUserDefaults] valueForKey:@"myTextFieldKey"];
share|improve this answer

Try:

myLabel.text = [[NSUserDefaults standardUserDefaults] stringForKey:@"myTextFieldKey"];
share|improve this answer

Check that myTextField and myLabel aren't nil.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.