Bind user defaults to different identifier - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T00:49:43Zhttp://stackoverflow.com/feeds/question/489856http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/489856/bind-user-defaults-to-different-identifier1Bind user defaults to different identifierCimm2009-01-28T23:18:44Z2009-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#4899671Answer by Graham Lee for Bind user defaults to different identifierGraham Lee2009-01-28T23:59:41Z2009-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>