0

UIAlertView2番目のボタンがスコアを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];
}

なぜ保存されないのですか?

4

1 に答える 1

0

UIAlertViewDelegateメソッドはalertView:clickedButtonAtIndex:notと呼ばれますalertViewReset:clickedButtonAtIndex:

関数alertViewReset:clickedButtonAtIndex:が呼び出されることはありません。名前を修正すれば問題ないはずです。

于 2013-02-10T20:41:40.493 に答える