作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在晚上 8:30:01 有一个每日预定通知。
当“设置”应用中的通知被关闭切换一周后,没有通知显示,这很完美。
问题是当通知在该周之后在“设置”应用中切换回ON时,前一周的所有通知都会显示 .
我想知道如何让通知不“累积”可以这么说。
这里是否缺少一行代码来“清除它们”?
ViewController.m
:
- (void)viewDidLoad {
[super viewDidLoad];
UILocalNotification* localNotification = [[UILocalNotification alloc] init];
NSCalendar *cal = [NSCalendar currentCalendar];
NSDateComponents *comp = [cal components:(NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay | NSCalendarUnitHour | NSCalendarUnitMinute) fromDate:[NSDate date]];
comp.hour = 20; // 19 = 7PM 20=8pm
comp.minute = 30; // 7:45 PM 8:30
comp.second = 01; // 7:45:01 PM
localNotification.fireDate = [cal dateFromComponents:comp];
localNotification.alertBody = @"Local Notification in iOS8";
localNotification.timeZone = [NSTimeZone defaultTimeZone];
localNotification.repeatInterval = NSCalendarUnitDay;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
}
*这些是从通知关闭时开始显示的通知,只要我将通知切换回ON:*
最佳答案
当您将通知设置为关闭时,您应该调用 [[UIApplication sharedApplication] cancelAllLocalNotifications];
关于ios - 计划的本地通知在切换为 ON 的时间段内显示,切换为 OFF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29956882/
我是一名优秀的程序员,十分优秀!