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 am trying to save my NSUserDefaults when the viewWillDisappear is called on one of my subviews. I can confirm it is getting called.

NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];

[defaults setObject:@"test" forKey:@"123"];

[defaults synchronize];

However whenever I restart the app and try to use it:

NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];

if (![defaults objectForKey@"test"])
    NSLog(@"did not exist");
else 
    NSLog(@"found it");

it never finds it. Why?

share|improve this question

1 Answer

up vote 3 down vote accepted

You are swapping your key and object. It should be:

if (![defaults objectForKey@"123"])
share|improve this answer
ah so simple, thanks! – KaiserJohaan Oct 26 '11 at 7:12

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.