Noticed a minor issue, replace this
Code:
//SAVE HIGH LEVEL
[[NSUserDefaults standardUserDefaults] setInteger:high_level_value forKey:@"high_score"];
With this
Code:
//SAVE HIGH LEVEL
[[NSUserDefaults standardUserDefaults] setInteger:[high_level_value intValue] forKey:@"high_score"];
Hope this helps!
__________________
“Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.” Anonymous
Follow me on Twitter
http://twitter.com/stolidimran