0

私はiOS開発にかなり慣れていないので、助けていただければ幸いです! 現在 Xcode5-DP4 を使用していますが、コードが正しく動作していません (以前は正常に動作していましたが)。ボタンをタップすると、2:00 (分:秒) のカウントダウンが始まります。

FirstViewController.h:

@interface FirstViewController : UIViewController {
     IBOutlet UILabel *countdownLabel;
     IBOutlet UIButton *countdownStart;
     NSTimer *countdownTimer;
     int secondsCount;
}

-(IBAction)alert;
-(void)delay;

FirstViewController.m:

UIAlertView *alert;

-(void)delay {
    [alert show];
 }


 -(IBAction)alert{
     alert = [[UIAlertView alloc]
          initWithTitle:@"Die Zeit ist um!"
          message:@"Du darfst das Zähneputzen nun beenden, aber vergiss nicht, noch mehr für deine Mundhygiene zu tun."
          delegate:self
          cancelButtonTitle:@"OK"
          otherButtonTitles:nil];

     [self performSelector:@selector(delay) withObject:nil afterDelay:120.0];
 }


 - (IBAction)zaehneputzen:(id)sender {

    [self setTimer];
 }


 - (void) setTimer {

    secondsCount = 120;
    countdownTimer = [NSTimer scheduledTimerWithTimeInterval:(1.0) target:(self) selector:@selector(timerRun) userInfo:(nil)
    repeats:(YES)];
 }

 - (void) timerRun {

    secondsCount = secondsCount-1;
    int minutes = secondsCount / 60;
    int seconds = secondsCount - (minutes * 60);

    NSString *timerOutput = [NSString stringWithFormat:@"%02d:%02d", minutes, seconds];
    countdownLabel.text = timerOutput;

    if(secondsCount == 0){

       [countdownTimer invalidate];
       countdownTimer = nil;

    }
}

問題: - タイマーのカウントが速すぎて、完全な秒を使用していません (ラベルは 0.5 秒後と 1.5 秒後に変化します...) - タイマーは負の範囲にカウントし続けます...

あなたが私を助けてくれることを願っています=)。

前もってありがとう、アンドレア!

4

1 に答える 1