I have a file Settings.plist. When I update the values and restart the app, the values are the same that in the initiale file Settings.plist...
I open the file like that :
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"Settings" ofType:@"plist"]; NSMutableDictionary *settings = [[NSMutableDictionary alloc] initWithContentsOfFile:filePath];
make update and then save
[settings writeToFile:filePath atomically:YES];
After that, if I open the file, the values are the new, that's ok, but when I restart the app, all the values are reset.