I am doing a project where I have to retrieve some values in settings.bundle. For this I have to retrieve a default value in such a manner. I am accessing it as under
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
stringObject = [defaults objectForKey:@"Key_Value"];
But when I try to print stringObject
NSLog(@"%@",stringObject);
Then it always print null. I have saved a string value in the settings.bundle with key "Key_Value". But It returns Null.
tell me where I am doing wrong