Can you make the settings in Settings.bundle default even if you don't open the Settings App - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T19:02:14Z http://stackoverflow.com/feeds/question/510216 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/510216/can-you-make-the-settings-in-settings-bundle-default-even-if-you-dont-open-the-s 5 Can you make the settings in Settings.bundle default even if you don't open the Settings App rustyshelf 2009-02-04T05:51:15Z 2009-06-17T22:28:42Z <p>I have an iPhone application with a settings.bundle that handles various settings for my application. I can set default values in my root.plist file (using the DefaultValue property), but these only get used the first time the user opens the settings app. Is there any way to get these values written out when your application installs? I know I can just write code that checks for the first launch of my app and then write them out, but then they are in two different places.</p> <p>Here is an entry from my root.plist as an example:</p> <pre><code>&lt;dict&gt; &lt;key&gt;Type&lt;/key&gt; &lt;string&gt;PSToggleSwitchSpecifier&lt;/string&gt; &lt;key&gt;Title&lt;/key&gt; &lt;string&gt;Open To Top Location&lt;/string&gt; &lt;key&gt;Key&lt;/key&gt; &lt;string&gt;open_top_location&lt;/string&gt; &lt;key&gt;DefaultValue&lt;/key&gt; &lt;string&gt;YES&lt;/string&gt; &lt;key&gt;TrueValue&lt;/key&gt; &lt;string&gt;YES&lt;/string&gt; &lt;key&gt;FalseValue&lt;/key&gt; &lt;string&gt;NO&lt;/string&gt; &lt;/dict&gt; </code></pre> <p>The end result should be that if I ask for 'open_to_top_location' I get a YES, instead of it not being there at all until the first time the user opens the Settings app.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/510216/can-you-make-the-settings-in-settings-bundle-default-even-if-you-dont-open-the-s/510329#510329 15 Answer by PCheese for Can you make the settings in Settings.bundle default even if you don't open the Settings App PCheese 2009-02-04T06:57:24Z 2009-06-17T22:28:42Z <p>If I understood you correctly, you want to avoid having default values specified twice (once as "DefaultValue" keys in your Settings.bundle/Root.plist file, and once in your app initialization code) so you do not have to keep them in sync.</p> <p>Since Settings.bundle is stored within the app bundle itself, you can just read the default values given there. I put together some sample code that looks at the Settings bundle and reads the default values for every key there. Note that this does not write out the default keys; if they don't exist, you'll need to read and register them at every launch (feel free to change this). I've only done some cursory tests, so make sure it works for you in all cases.</p> <pre><code>- (void)applicationDidFinishLaunching:(UIApplication *)application { NSString *name = [[NSUserDefaults standardUserDefaults] stringForKey:@"name"]; NSLog(@"name before is %@", name); // Note: this will not work for boolean values as noted by bpapa below. // If you use booleans, you should use objectForKey above and check for null if(!name) { [self registerDefaultsFromSettingsBundle]; name = [[NSUserDefaults standardUserDefaults] stringForKey:@"name"]; } NSLog(@"name after is %@", name); } - (void)registerDefaultsFromSettingsBundle { NSString *settingsBundle = [[NSBundle mainBundle] pathForResource:@"Settings" ofType:@"bundle"]; if(!settingsBundle) { NSLog(@"Could not find Settings.bundle"); return; } NSDictionary *settings = [NSDictionary dictionaryWithContentsOfFile:[settingsBundle stringByAppendingPathComponent:@"Root.plist"]]; NSArray *preferences = [settings objectForKey:@"PreferenceSpecifiers"]; NSMutableDictionary *defaultsToRegister = [[NSMutableDictionary alloc] initWithCapacity:[preferences count]]; for(NSDictionary *prefSpecification in preferences) { NSString *key = [prefSpecification objectForKey:@"Key"]; if(key) { [defaultsToRegister setObject:[prefSpecification objectForKey:@"DefaultValue"] forKey:key]; } } [[NSUserDefaults standardUserDefaults] registerDefaults:defaultsToRegister]; [defaultsToRegister release]; } </code></pre> http://stackoverflow.com/questions/510216/can-you-make-the-settings-in-settings-bundle-default-even-if-you-dont-open-the-s/938108#938108 0 Answer by for Can you make the settings in Settings.bundle default even if you don't open the Settings App 2009-06-02T06:14:02Z 2009-06-02T06:14:02Z <p>Thanks for the above! Awesome.</p>