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 got a problem similar to link text

I'm using XCode 3.2.4 (1708). After I reinstalled it, I'm started to get Nil from my NSUserDefaults object.

If I'm writing:

 - (void)viewDidLoad {    
 NSUserDefaults *sUserDefaults = [NSUserDefaults standardUserDefaults];    
 NSString *myAdd = [standardUserDefaults objectForKey:kMyIPaddress];
 }

I get Nil in myAdd variable, but if I do like that:

- (void)viewDidLoad {    
 NSUserDefaults *sUserDefaults = [NSUserDefaults standardUserDefaults];
 [standardUserDefaults setObject:@"192.168.1.2" forKey:kMyIPaddress];
 NSString *myAdd = [standardUserDefaults objectForKey:kMyIPaddress];
 }

I get 192.168.1.2 in myAdd object. So looks like UserDefaults stays empty before I put something to them, but they exists in General Preferences and contains proper values. Why can't I access them before I put something there?

share|improve this question

2 Answers

up vote 1 down vote accepted

You need to register your default values with NSUserDefaults.

NSDictionary *def = [NSDictionary dictionaryWithObjectsAndKeys:
                     @"192.168.1.2", kMyIPaddress,
                     nil];
[[NSUserDefaults standardUserDefaults] registerDefaults:def];

and you need to do this every time your app starts.
It doesn't matter that there are settings in the Settings.app (my interpretation of your General Preferences). If those values are not changed manually they are not stored in NSUserDefaults.

share|improve this answer
But if I register defaults in the ViewDidLoad like that - Defaults will be overwritten with *def every time I launch the Application, right? – MoriQuessir Nov 12 '10 at 7:43
Looks like it don't overwrite settings, but just initialize them - that what I needed! Thank you very much! – MoriQuessir Nov 12 '10 at 14:46

Did you do a

[[NSUserDefaults standardUserDefaults] synchronize];

after putting your NSString there?

share|improve this answer
Looks like it works now with "synchronize". Thank you! – MoriQuessir Nov 10 '10 at 7:11

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.