i have to modify a BOOL value in my plist file stored with the bundle.i am able to access the dictionary which i have to modify .from nslogging i can see that dict is update
Is there any error
Check with
NSError *error = nil [dict writeToFile:plistPath atomically:YES encoding:NSASCIIStringEncoding error:&error]; if (error) { NSLog(@"Error: %@", [error description]); } else { NSLog(@"Success"); }