Can someone please help me understand why this bool isn't saving?
Here is my code in the view did load:
[appDelegate.defaults setBool:YES forKey:@"testKey"];
[appDelegate.defaults synchronize];
NSLog (@"TEST BOOL VALUE = %@", [appDelegate.defaults boolForKey:@"testKey"] ? @"YES" : @"NO");
In the app delegate applicationDidFinishLaunching, I define appdelegate.defaults as this:
self.defaults = [NSUserDefaults standardUserDefaults];
Why is this not working I honestly have no idea.
Thanks!!
defaults? Assign? – sudo rm -rf Apr 24 '12 at 23:15defaultsproperty? What happens when you replaceappDelegate.defaultsby[NSUserDefaults standardUserDefaults]inviewDidLoad? – sch Apr 24 '12 at 23:16appDelegatedeclared and when do you set its value? See my answer below. – sch Apr 24 '12 at 23:34