Hi,
I am working on an iPhone app
I read a key from root.plist like this :
NSString *Key1Var = [[NSUserDefaults standardUserDefaults] stringForKey:@"Key1"]; ("Key1" is a PSMultiValueSpecifier for which a default string value has been set already in root.plist)
That works fine, once the user makes settings. But if the user runs the app before he does any setting, he will get NIL for "Key1". In such case, I was expecting the default value that i had set for "key1". what i need to do, so that the user does not have to do setting, to make application run for the first time?
Regards, Harish