I have the following code to register an observer:
// This logs some value
NSLog(@"%@", [[NSUserDefaults standardUserDefaults] objectForKey:@"myKey"]);
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleNotifications:)
name:SomeNotification
object:nil];
- (void) handleNotifications: (NSNotification *)notification
{
// This logs null
NSLog(@"%@", [[NSUserDefaults standardUserDefaults] objectForKey:@"myKey"]);
}
Why is myKey returning null in the notification selector?
EDIT
I'm trying to save a new value when the value does not exists in the selector, however it always appear to return null in the selector after the app is restarted.
- (void) handleNotifications: (NSNotification *)notification
{
if (![[NSUserDefaults standardUserDefaults] objectForKey:@"myKey"])) {
NSLog(@"Saving");
[[NSUserDefaults standardUserDefaults] setObject: @"ABC", forKey:@"myKey"]
[[NSUserDefaults standardUserDefaults] synchronize];
}
}
returnactually does. – 0x7fffffff Dec 29 '12 at 17:58