UIAlertView
2番目のボタンがスコアを0にリセットすることになって いるものを作成しました。
これが私のUIAlertViewコードです:
- (IBAction)showActionSheetReset:(id)sender
{
UIAlertView *resetAlertView = [[UIAlertView alloc] initWithTitle:@"Delete And Reset Score"
message:@"Are You sure You Want To Reset The Score Shown on the Engligh Page? This WILL NOT affect your High Score on Game Center."
delegate:self
cancelButtonTitle:@"No, Don't Erase"
otherButtonTitles:@"Yes, Reset Score", nil];
[resetAlertView show];
resetAlertView.tag = 2;
}
- (void)alertViewReset:(UIAlertView *)alertViewReset clickedButtonAtIndex: (NSInteger)buttonIndex
{
if (alertViewReset.tag == 2) {
if (buttonIndex == 1) {
[self resetTheScore];
}
}
}
そして、ここに私のresetTheScore
方法があります:
- (IBAction)resetTheScore
{
self.currentScore = 0;
currentScoreLabel.text = [NSString stringWithFormat:@"%lld", self.currentScore];
[self counterDefaults:self];
}
そして、ここに私のcounterDefaults
方法があります:
- (IBAction)counterDefaults:(id)sender
{
NSUserDefaults *Defaults = [NSUserDefaults standardUserDefaults];
[Defaults setInteger:self.currentScore forKey:TapCount];
[Defaults synchronize];
}
なぜ保存されないのですか?