I am trying to change the value of a plist (@key "userId" which has a starting value of 0)
NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"GlobalSettings" ofType:@"plist"];
NSMutableDictionary *data = [NSMutableDictionary dictionaryWithContentsOfFile:plistPath];
NSDictionary *userId = [data objectForKey:@"userId"];
[data setValue:(@"99") forKey:@"userId"];
[data writeToFile:plistPath atomically: NO];
userId = [data objectForKey:@"userId"];
NSLog(@"%@", userId);
The log shows that the value has change to 99, but when I open the plist the value is still 0