タイマーがフォアグラウンドにある場合に完全に機能するタイマーがあります。それは完全に減少し、0 で停止します。ただし、ホームボタンをタップしてメイン画面に移動し、ローカル通知がポップアップするのを待って通知をタップすると、時間間隔は 42 億 (制限) になります。 unsigned 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];
}
}