我有一个计时器,如果计时器在前台,则可以很好地工作。它完美地递减并在0处停止。但是,当我点击homebutton进入主屏幕,然后等待本地通知弹出,然后我点击通知时,时间间隔变成42亿(上限用于无符号的long int)。基本上,它不会在0处停止。我不确定如何解决此问题。我尝试将其设置为常规NSInteger,并检查间隔是否低于0,但得到的结果相同。

-(IBAction)startTimer:(id)sender{
    if (!timer) {
        [startButton setTitle:@"Start" forState:UIControlStateNormal];
        timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerAction:) userInfo:nil repeats:YES];
       date = [NSDate date];
    } else {
        [startButton setTitle:@"Stop" forState:UIControlStateNormal];
        anotherTimeInterval = testTask.timeInterval;
        [timer invalidate];
        timer = nil;
    }

}

-(void)timerAction:(NSTimer *)t
{
    NSTimeInterval interval = [[NSDate date] timeIntervalSinceDate:date];
    if (testTask.timeInterval > 0){
        NSError *error;
        if (![self.context save:&error]) {
            NSLog(@"couldn't save: %@", [error localizedDescription]);
        }
        NSUInteger seconds = (NSUInteger)round(anotherTimeInterval-interval);
        NSString *string = [NSString stringWithFormat:@"%02u:%02u:%02u",
                            seconds / 3600, (seconds / 60) % 60, seconds % 60];
        testTask.timeInterval = seconds;
        timerLabel.text = string;
        NSLog(@"%@", string);
    } else {
        NSLog(@"timer ended");
        [self.timer invalidate];
        self.timer = nil;
        [self timerExpired];
    }
}

-(void)applicationWillResignActive:(UIApplication *)application{
    if (timer){
        UILocalNotification* localNotification = [[UILocalNotification alloc] init];
        localNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:testTask.timeInterval];
        localNotification.alertBody = @"Time is up";
        localNotification.alertAction = @"Ok";
        localNotification.timeZone = [NSTimeZone defaultTimeZone];
        [[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
    }
}

最佳答案

您在%02u中使用的stringWithFormat:将值解析为无符号整数。

另外,我认为这是您的问题,您正在检查if语句中的testTask.timeInterval,但是从方法开始时得到的interval变量中获取秒数。
因此,您始终在检查先前的值,这意味着始终落后一秒钟。

编辑:
您可以这样做:

NSTimeInterval interval = [[NSDate date] timeIntervalSinceDate:date];
if (anotherTimeInterval-interval > 0){
    ...
}


这样,您可以检查新值而不是旧值。

希望这可以帮助

关于iphone - 倒数计时器不会在0处停止,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18238511/

10-13 09:03