0

我希望我的计时器在后台工作,并且我想出真正做到这一点的唯一方法是保存时间appliationDidEnterBackground并使用我的计时器使用核心数据检索它,applicationDidLaunchWithOptions.并且我的 timeInterval (testTask.timeInterval) 在每次递减后保存为所以:

-(IBAction)startTimer:(id)sender{
    if (timer == nil) {
        [startButton setTitle:@"Pause" forState:UIControlStateNormal];
       timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerAction:) userInfo:nil repeats:YES];
    } else {
        [startButton setTitle:@"Resume" forState:UIControlStateNormal];
        [timer invalidate];
        timer = nil;
    }

}
-(void)timerAction:(NSTimer *)t
{
    if(testTask.timeInterval == 0)
    {
        if (self.timer)
        {
            [self timerExpired];
            [self.timer invalidate];
            self.timer = nil;
        }
    }
    else
    {
        testTask.timeInterval--;
        NSError *error;
        if (![self.context save:&error]) {
            NSLog(@"couldn't save: %@", [error localizedDescription]);
        }
    }
    NSUInteger seconds = (NSUInteger)round(testTask.timeInterval);
    NSString *string = [NSString stringWithFormat:@"%02u:%02u:%02u",
                        seconds / 3600, (seconds / 60) % 60, seconds % 60];
    timerLabel.text = string;
    NSLog(@"%f", testTask.timeInterval);
}
-(void)timerExpired{
    UILocalNotification* localNotification = [[UILocalNotification alloc] init];
    localNotification.alertBody = @"Time is up";
    localNotification.alertAction = @"Ok";
    localNotification.timeZone = [NSTimeZone defaultTimeZone];
    [[UIApplication sharedApplication]presentLocalNotificationNow:localNotification];
}

这些方法位于详细视图控制器中,由以下内容初始化:

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    DetailViewController *detailVC;
    if (![self.detailViewsDictionary.allKeys containsObject:indexPath]){
        detailVC = [[DetailViewController alloc]initWithNibName:@"DetailViewController" bundle:nil];
        [self.detailViewsDictionary setObject:detailVC forKey:indexPath];
        detailVC.context = self.managedObjectContext;
    }else{
        detailVC = self.detailViewsDictionary[indexPath];
    }
        Tasks *task = [[self fetchedResultsController] objectAtIndexPath:indexPath];
        detailVC.testTask = task;
        [[self navigationController] pushViewController:detailVC animated:YES];
    NSLog(@"%@", self.detailViewsDictionary);
}

我不明白的是......我将如何访问 timeInterval (每个detailviewcontroller 有不同的时间间隔......)以便我可以把它放进去appliationDidEnterBackground?另外,我猜我应该保存应用程序进入后台的时间,然后保存它进入前台的时间,然后减去?然后我会从时间间隔中减去那个值,对吗?

4

1 回答 1

2

首先,如果您完全关心准确性,则不应该使用这样的直接倒计时。NSTimer不会以精确的一秒间隔触发,延迟会累积。更好的方法是创建一个NSDate计时器开始的时间,并NSTimeInterval在每个滴答时获取从那时起,然后计算分钟和秒。

对于每个视图控制器来存储自己的开始时间,您可以注册任何对象来接收UIApplicationDidEnterBackgroundNotification. 这是在应用程序委托获取的同时发布的applicationDidEnterBackground:

另外,我猜我应该保存应用程序进入后台的时间,然后保存它进入前台的时间,然后减去?然后我会从时间间隔中减去那个值,对吗?

是的:

NSTimeInterval idleTime = [dateReturnedToForeground timeIntervalSinceDate:dateEnteredBackground];
NSTimeInterval elapsedTime = [[NSDate date] timeIntervalSinceDate:startDate];
elapsedTime -= idleTime;

将为您提供计时器已过的活动时间。

于 2013-08-11T19:02:44.350 回答