我将闹钟时间设置为 1 小时。当应用程序处于运行模式时,警报工作正常,但当它在后台时,警报无法正常工作。如何在后台运行警报。
问问题
1913 次
2 回答
2
您需要使用本地通知。这很简单。有关更多信息,请参阅此文档(推送通知来自远程源,因此您可以忽略它们)。
于 2012-07-31T04:28:44.093 回答
1
此代码只是在后台显示带有警报和声音的 localNotification。因此,在代码中进行了一些更改,并在警报应用程序中使用。
- (IBAction)Alert:(id)sender{
NSDateFormatter *format = [[NSDateFormatter alloc] init];
[format setDateFormat:@"yyyy-MM-dd"];
//NSDate *date = [NSDate date];
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
localNotif.fireDate =[NSDate dateWithTimeIntervalSinceNow:15];
localNotif.timeZone = [NSTimeZone localTimeZone];
localNotif.alertBody = @"Emergency";
localNotif.alertAction = @"View";
localNotif.soundName = @"police.mp3";
localNotif.applicationIconBadgeNumber = 1;
localNotif.repeatInterval = NSYearCalendarUnit;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
[localNotif release];
}
于 2012-07-31T04:56:07.050 回答