up vote 13 down vote favorite
6
share [g+] share [fb]

I have an AppDelegate class with +(void)initialize method that I use to register some defaults. Here's the code that I use:

+ (void)initialize {
  NSDictionary *defaults = [NSDictionary dictionaryWithObjectsAndKeys:@"NO", @"fooKey", @"YES", @"barKey", nil];

  [[NSUserDefaults standardUserDefaults] registerDefaults:defaults];
}

I also created Preferences.xib which holds couple of checkboxes (NSButton) that display status of preferences. They are bound to NSUserDefaultsController with same keys (fooKey and barKey in this case). Each time I launch an app and change the "defaults" they are restored on next app launch.

Is there a way to register "default defaults" without overwriting already existing values? Maybe each time I build and launch an app its preferences file is being recreated? Maybe I should unbind checkboxes from NSUserDefaultsController and maintain the values of keys myself with some custom code in preferences window controller?

I'd like to hear your implementation of choice for maintaining user defaults.

I'm using Mac OS X 10.6.2 and XCode 3.2.1

link|improve this question

Make sure the checkboxes are bound to "Shared User Defaults Controller", controller key "values", model key paths "fooKey"/"barKey". Otherwise your code looks alright to me. – Costique Jan 16 '10 at 9:53
1  
@"NO" is not a Boolean literal; it is a string literal for the word “NO”. You should use [NSNumber numberWithBool:NO]; otherwise, the values in the user defaults will not be Booleans. – Peter Hosey Jan 16 '10 at 17:37
No, they won't be, but if I read them as BOOLs - they will. Excerpt from Daniel H Steinberg's book "Cocoa Programming" (pragprog.com): Actually, you don’t need to be so explicit when you place the BOOL in the dictionary. You could pass in the value YES or NO as a string and still create a BOOL from this value when you read from the preferences. – Eimantas Jan 16 '10 at 17:54
feedback

2 Answers

up vote 27 down vote accepted

From the documentation for -registerDefaults: (emphasis added):

The contents of the registration domain are not written to disk; you need to call this method each time your application starts. You can place a plist file in the application's Resources directory and call registerDefaults: with the contents that you read in from that file.

So your code was on the right track. This is how you register default defaults.

I usually use this in -applicationDidFinishLaunching::

    // Load default defaults
    [[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Defaults" ofType:@"plist"]]];

Using a plist makes it easy to add and change defaults in your app, and it prevents you from making the mistake of using @"NO" as a value too.

link|improve this answer
Johan - thanks for the eye-opener. I rechecked the call and it seems that it works without any if statements! – Eimantas Jan 17 '10 at 7:13
Can your "load default defaults" code above be used with the Settings bundle? For example, could I use the Root.plist file to initialize my defaults? – Ricky Feb 5 '10 at 16:23
Yes, though your Settings bundle may be loaded before you app was ever launched, so you still may want to set the initial defaults in the settings plist as well. The -registerDefaults: method will not override preferences set through a Settings bundle. – Johan Kool Jun 10 '10 at 23:16
For some reason, when I had this in -applicationWillFinishLaunching, it didn't work. Simply moving it to -applicationDidFinishLaunching did the trick. Weird. – geerlingguy 2 days ago
feedback

I don't know an easy way to do this. Usually, you only call registerDefaults: once, when a given key is not present for example, to set up all the default properties.

To setup the defaults, I have:

+ (void) initialize {
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    // We are testing if we have already some preferences
    // If not, we register the default values
    if ([defaults objectForKey:@"HasXXX"] == nil) {
        NSDictionary *values = [NSDictionary dictionaryWithObjectsAndKeys:@"NO", @"fooKey", @"YES", @"barKey", nil];
        [[NSUserDefaults standardUserDefaults] registerDefaults:values ];
    }
}

In addition, I implement two methods:

  • restoreSettingsFromUserDefaults that takes the values from NSUserDefaults
  • saveSettingsToUserDefaults that takes the values from UI and stores them in NSUserDefaults

The NSUserDefaults reference page lists some sample that worth taking a look at.

Edit: Add code for + (void) initialize.

link|improve this answer
There's a bit of confusion. You have two methods that loads and saves user defaults if I understood you correctly. I'm looking for a third method that creates user defaults if they weren't already created. Now I see there's no explicit method for this. Calling registerDefaults: when a key is not present is okay for one or two keys, but when there are much more preferences it becomes PITA to maintain those checks (at least I can think of one big if statement). Thanks for your thoughts! – Eimantas Jan 16 '10 at 10:41
Right. Now I get your point. Before register defaults for the first time they wouldn't have ANY key at all. Silly me! ^.^ – Eimantas Jan 16 '10 at 12:11
4  
This is wrong. There is no need to test if any preference has been set already. -registerDefaults: will not override preferences already set. – Johan Kool Jan 16 '10 at 19:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.