NSUserDefaults: Dumping the structure of NSUserDefaults's standardUserDefaults - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T13:11:55Zhttp://stackoverflow.com/feeds/question/809607http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/809607/nsuserdefaults-dumping-the-structure-of-nsuserdefaultss-standarduserdefaults3NSUserDefaults: Dumping the structure of NSUserDefaults's standardUserDefaultsKevin Bomberry2009-04-30T23:41:19Z2009-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: <NSUserDefaults: 0x50b520>
</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#8096175Answer by rpetrich for NSUserDefaults: Dumping the structure of NSUserDefaults's standardUserDefaultsrpetrich2009-04-30T23:45:37Z2009-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#8096184Answer by thesamet for NSUserDefaults: Dumping the structure of NSUserDefaults's standardUserDefaultsthesamet2009-04-30T23:46:24Z2009-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#8100364Answer by Marc Charbonneau for NSUserDefaults: Dumping the structure of NSUserDefaults's standardUserDefaultsMarc Charbonneau2009-05-01T03:13:45Z2009-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#8266444Answer by Kevin Bomberry for NSUserDefaults: Dumping the structure of NSUserDefaults's standardUserDefaultsKevin Bomberry2009-05-05T19:54:50Z2009-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#14772310Answer by Elise van Looij for NSUserDefaults: Dumping the structure of NSUserDefaults's standardUserDefaultsElise van Looij2009-09-25T13:16:33Z2009-09-25T13:16:33Z<pre><code>NSLog(@"%@ defaults = %@", [self class],
[[NSUserDefaults standardUserDefaults]
persistentDomainForName:[[NSBundle mainBundle] bundleIdentifier]]);
</code></pre>