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 created my application settings in Settings.bundle. I go into the Settings App and update a value. When I relaunch my app (which was in the background), how do I check for the updated settings in the Settings App.

I tried the following but I still get the old value. Any suggestions?

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(checkAutoUpdateSettingsForNotificaiton:) name:UIApplicationDidBecomeActiveNotification object:nil];

- (void)checkAutoUpdateSettingsForNotificaiton:(NSNotification *)aNotification
{
    NSNumber *period = [[[NSUserDefaults standardUserDefaults] objectForKey:@"periodID"] retain];

}
share|improve this question

1 Answer

up vote 4 down vote accepted

I had to add [[NSUserDefaults standardUserDefaults] synchronize]; to do the synchronization.

share|improve this answer
Works perfect ! – pnizzle Jan 30 at 6:07

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.