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 moved some of my apps settings form inside the app to the Settings menu

Everything works fine on the simulator (as usual:D) but when I try to deploy to a device it can't find the settings values in my NSUserDefaults.

In the Settings menu I can see my app and it's settings, but when I run this code:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    [defaults synchronize];   
    NSString *loc=[defaults objectForKey:@"currency"];
    NSLog(@"start");
    NSLog(@"--- %@",loc);
    [defaults setObject:loc forKey:@"localisation"];

I get :

2012-09-17 15:51:08.240 MyApp[259:707] start

2012-09-17 15:51:08.243 MyApp[259:707] --- (null)

Any Ideas ?

share|improve this question
are you setting the value fro curreny – Rupesh Sep 17 '12 at 15:14
Have you resolved the issue? Otherwise, I would try NSLog(@"%@", defaults); first, before even NSLogging loc. – Ravi Sep 17 '12 at 15:29
Found the issue, if the user hasn't set a value it doesn't appear. how can I set a default from the plist ? – Jason Rogers Sep 17 '12 at 16:14

1 Answer

NSUserDefaults has a method registerDefaults:.

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.