Bind user defaults to different identifier - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T00:49:43Z http://stackoverflow.com/feeds/question/489856 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/489856/bind-user-defaults-to-different-identifier 1 Bind user defaults to different identifier Cimm 2009-01-28T23:18:44Z 2009-01-29T13:49:37Z <p>I have a preference pane bundle (it runs in the System Preferences). I designed the interface using Interface Builder where I binded a "start automatically" checkbox to the Shared User Defaults. This works great but it writes the preference to com.apple.systempreferences. I would like to keep my preferences in the com.example.mybundle defaults. How do I do this?</p> <p>I suppose I need to add a User Defaults controller in Interface Builder but how can I tell it to map with com.example.mybundle?</p> <p>Thank you all!</p> http://stackoverflow.com/questions/489856/bind-user-defaults-to-different-identifier/489967#489967 1 Answer by Graham Lee for Bind user defaults to different identifier Graham Lee 2009-01-28T23:59:41Z 2009-01-28T23:59:41Z <p>You'll want to bind to an NSDictionaryController whose persistence is managed through <code>-[NSUserDefaults persistentDomainForName:]</code> and <code>-[NSUserDefaults setPersistentDomain:forName:]</code> although it's frankly just as easy to use <code>+[NSDictionary dictionaryWithContentsOfFile:]</code> and <code>-[NSDictionary writeToFile:atomically:]</code>.</p>