I have one Toggle Switch in my settings bundle, but it is not working for first time. When i changed the value once again in the settings it is working corrctly.
Even i synchronize before using the value:
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
[userDefaults synchronize];
if([userDefaults boolForKey:@"KeyName"]) {
//Do Some Work
}
What i have to do now?