我正在iOS中制作一个应用程序,它将在计时器上发送本地通知。当应用程序处于后台状态时,它可以正常工作,但是在终止并完全关闭时,它无法工作。
无论如何,是否仍会在发生这种情况时发送本地通知?
提前致谢。
当然,如果您安排了本地通知,即使您终止应用程序,它也会触发。
UILocalNotification *_localNotification = [[UILocalNotification alloc] init]; _localNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:_value]; _localNotification.timeZone = [NSTimeZone defaultTimeZone]; _localNotification.alertBody = @"Beep... Beep... Beep..."; _localNotification.soundName = UILocalNotificationDefaultSoundName; [[UIApplication sharedApplication]scheduleLocalNotification:_localNotification];
…对我来说就像是一种魅力。