I'm setting up a "click counter" on my iOS app, so the user will know how many times he performed an action. I'm using NSUserDefaults, for I'm can't make it load when the app opens.
First I created a UILabel that stores the number and increases it each time the user click on it:
- (IBAction) increaseScore {
self.currentScore = self.currentScore + 1;
currentScoreLabel.text = [NSString stringWithFormat: @"%ld", self.currentScore];
// Saving:
NSUserDefaults * defaults = [NSUserDefaults standardUserDefaults];
[defaults setObject:currentScoreLabel.text forKey: @"Score"];
[defaults synchronize]; }
This works OK, the Label increases +1 each time I click on the button. Not sure if it is saving correctly, because when I close the app opens again, it doesn't load, the label goes back to zero:
- (void)viewDidLoad {
[super viewDidLoad];
currentScoreLabel.text = [[NSUserDefaults standardUserDefaults] stringForKey: @"Store"];
}
Any ideas???