I really hope this isn't redundant, but I honestly can't find the answer in other SO posts.
In my app delegate I set a value of 0 for key TopScoreLevel1. Later in the app I then run this snippet of code:
NSLog(@"This is your new score: %@", newScoreString);
[[NSUserDefaults standardUserDefaults] setObject:@"xxx" forKey:@"TopScoreLevel1"];
BOOL fail = [[NSUserDefaults standardUserDefaults] synchronize];
if (!fail){
NSLog(@"success.");
} else {
NSLog(@"fail.");
}
NSString *printRecorded = [[NSUserDefaults standardUserDefaults] stringForKey:@"TopScoreLeve1"];
NSLog(@"Class: User Score. DID USER DEFAULTS SAVE? --> %@", printRecorded);
New score prints a value successfully, but my synchronize method fails. I also get a (null) value for printRecorded. Bizarre. Any ideas?