NSUserDefaults: Dumping the structure of NSUserDefaults's standardUserDefaults - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T13:11:55Z http://stackoverflow.com/feeds/question/809607 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/809607/nsuserdefaults-dumping-the-structure-of-nsuserdefaultss-standarduserdefaults 3 NSUserDefaults: Dumping the structure of NSUserDefaults's standardUserDefaults Kevin Bomberry 2009-04-30T23:41:19Z 2009-09-25T13:16:33Z <p>Hi hi. Does anyone know of a quick way to dump the standardUserDefaults of NSUserDefaults via NSLog? This is what I have:</p> <pre><code>NSLog(@"NSUserDefaults dump: %@", [NSUserDefaults standardUserDefaults]); </code></pre> <p>But it returns:</p> <pre><code>NSUserDefaults dump: &lt;NSUserDefaults: 0x50b520&gt; </code></pre> <p>...which is not quite what I'm looking for. I'd really like to have key-value pairs.</p> <p>Any help or a point in the right direction would be greatly appreciated. Cheers!</p> http://stackoverflow.com/questions/809607/nsuserdefaults-dumping-the-structure-of-nsuserdefaultss-standarduserdefaults/809617#809617 5 Answer by rpetrich for NSUserDefaults: Dumping the structure of NSUserDefaults's standardUserDefaults rpetrich 2009-04-30T23:45:37Z 2009-04-30T23:45:37Z <pre><code>NSLog(@"NSUserDefaults dump: %@", [[NSUserDefaults standardUserDefaults] dictionaryRepresentation]); </code></pre> http://stackoverflow.com/questions/809607/nsuserdefaults-dumping-the-structure-of-nsuserdefaultss-standarduserdefaults/809618#809618 4 Answer by thesamet for NSUserDefaults: Dumping the structure of NSUserDefaults's standardUserDefaults thesamet 2009-04-30T23:46:24Z 2009-04-30T23:46:24Z <p>Try:</p> <pre><code>NSLog(@"NSUserDefaults dump: %@", [[NSUserDefaults standardUserDefaults] dictionaryRepresentation]); </code></pre> <p><a href="http://developer.apple.com/DOCUMENTATION/Cocoa/Reference/Foundation/Classes/NSUserDefaults%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSUserDefaults/dictionaryRepresentation" rel="nofollow">dictionaryRepresentation</a> returns an NSDictionary representation of the defaults.</p> http://stackoverflow.com/questions/809607/nsuserdefaults-dumping-the-structure-of-nsuserdefaultss-standarduserdefaults/810036#810036 4 Answer by Marc Charbonneau for NSUserDefaults: Dumping the structure of NSUserDefaults's standardUserDefaults Marc Charbonneau 2009-05-01T03:13:45Z 2009-05-01T03:13:45Z <p>The shared NSUserDefaults is initialized with three search domains by default (you can add others too if you need to): app arguments, app preferences (what's stored in the app's plist), and localized system preferences. The last one is why you're seeing those unfamiliar Apple keys, but you don't really have to worry about "overwriting" them. If you use the same key name, it will just put that value in the app preferences domain. Your app's preferences is searched before the system preferences so you'll get the same value back, but it won't affect anything else.</p> <p>If you really do want just your app's preferences though, you can remove the other search domains (the specific names you need is in the docs). </p> http://stackoverflow.com/questions/809607/nsuserdefaults-dumping-the-structure-of-nsuserdefaultss-standarduserdefaults/826644#826644 4 Answer by Kevin Bomberry for NSUserDefaults: Dumping the structure of NSUserDefaults's standardUserDefaults Kevin Bomberry 2009-05-05T19:54:50Z 2009-05-05T19:54:50Z <p>Thanks to Don McCaughey, my business partner and friend, for fixing up my code for me and supply a concise answer. To share it with the rest of you here is a code snippet:</p> <pre><code> NSDictionary *bundleInfo = [[NSBundle mainBundle] infoDictionary]; NSString *bundleId = [bundleInfo objectForKey: @"CFBundleIdentifier"]; NSUserDefaults *appUserDefaults = [[NSUserDefaults alloc] init]; NSLog(@"Start dumping userDefaults for %@", bundleId); NSLog(@"userDefaults dump: %@", [appUserDefaults persistentDomainForName: bundleId]); NSLog(@"Finished dumping userDefaults for %@", bundleId); [appUserDefaults release]; </code></pre> <p>As you can see, everyone who was answering the question was on the right track, but no code offered up was the solution - until Don's editing of our code in source control. Thanks All!</p> http://stackoverflow.com/questions/809607/nsuserdefaults-dumping-the-structure-of-nsuserdefaultss-standarduserdefaults/1477231#1477231 0 Answer by Elise van Looij for NSUserDefaults: Dumping the structure of NSUserDefaults's standardUserDefaults Elise van Looij 2009-09-25T13:16:33Z 2009-09-25T13:16:33Z <pre><code>NSLog(@"%@ defaults = %@", [self class], [[NSUserDefaults standardUserDefaults] persistentDomainForName:[[NSBundle mainBundle] bundleIdentifier]]); </code></pre>