NSTimer Milliseconds倒计时

时间:2013-09-27 12:35:10

标签: ios nstimer countdown milliseconds

我想用秒和毫秒做一个简单的倒计时:SS:MM。 但是,我想停止计时器或在计时器到达0:00时做一些事情。 目前计时器工作,但它不会在0:00停止。我可以让秒停止,但不是毫秒。有什么问题?

-(void) setTimer {
    MySingletonCenter *tmp = [MySingletonCenter sharedSingleton];
    tmp.milisecondsCount = 99;
    tmp.secondsCount = 2;



    tmp.countdownTimerGame = [NSTimer scheduledTimerWithTimeInterval:.01 target:self selector:@selector(timerRun) userInfo:nil repeats:YES];


}

-(void) timerRun {
    MySingletonCenter *tmp = [MySingletonCenter sharedSingleton];
    tmp.milisecondsCount = tmp.milisecondsCount - 1;



    if(tmp.milisecondsCount == 0){
        tmp.secondsCount -= 1;

        if (tmp.secondsCount == 0){

            //Stuff for when the timer reaches 0
            //Also, are you sure you want to do [self setTimer] again
            //before checking if there are any lives left?

            [tmp.countdownTimerGame invalidate];
            tmp.countdownTimerGame = nil;
            tmp.lives = tmp.lives - 1;
            NSString *newLivesOutput = [NSString stringWithFormat:@"%d", tmp.lives];
            livesLabel.text = newLivesOutput;
            if (tmp.lives == 0) {
                [self performSelector:@selector(stopped) withObject:nil];

            }
            else {[self setTimer]; }
        }
        else

            tmp.milisecondsCount = 99;
    }


    NSString *timerOutput = [NSString stringWithFormat:@"%2d:%2d", tmp.secondsCount, tmp.milisecondsCount];

    timeLabel.text = timerOutput;






}



-(void) stopped {
    NSLog(@"Stopped game");
    timeLabel.text = @"0:00";

}

2 个答案:

答案 0 :(得分:1)

好。你做了

tmp.milisecondsCount = tmp.milisecondsCount - 1;
if(tmp.milisecondsCount == 0){
    tmp.milisecondsCount = 100;
    tmp.secondsCount -= 1;
}

就在那之后

if ((tmp.secondsCount == 0) && tmp.milisecondsCount == 0) {
   //stuff
}

如果milisecond到达0后,您将其重置为100,那么它们是否都会为0?

编辑:改为:

if(tmp.milisecondsCount < 0){
    tmp.secondsCount -= 1;
    if (tmp.secondsCount == 0){
        //Stuff for when the timer reaches 0
        //Also, are you sure you want to do [self setTimer] again
        //before checking if there are any lives left?
    }
    else
        tmp.milisecondsCount = 99; 
}

答案 1 :(得分:0)

在您的代码中,满足第一个条件

 if(tmp.milisecondsCount == 0){
     tmp.milisecondsCount = 100;

以便下一个有条件的陈述

 && tmp.milisecondsCount == 0

永远不会成真。

相关问题