I want to dump all the NSUserDefaults used in my app to m database.
Why ? Because, I'm creating backup / restore functionality, where I'm only backing up the database file. This way I can keep all the settings in my database. I guess I'll need to do it line by line using insert queries.
You may well say, why don't you just store the values in your database to start with, we'll this would be a lot more work and impact performance. And is only a last resort option for me.
My problem if that normally when I'm saving to NSUserDefaults I would use either setInteger, setObject but how can I determine what to use in a loop.
I know I can iterate like this...
NSUserDefaults * defs = [NSUserDefaults standardUserDefaults];
NSDictionary * dict = [defs dictionaryRepresentation];
for (id key in dict) {
[defs removeObjectForKey:key];
}
[defs synchronize];
I don't want to have to do a call for each of my Key.
EDIT
I've found this, which I could use to dump to one record in my DB, but I'm not sure how to pass it back ?
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];