我想让用户在两种类型的通知中进行选择。其中一个是10个不同的本地通知,这些通知在白天被解雇,每个通知之间的时间为1小时,并且效果很好。 第二个选项是同时触发通知(我的意思是所有十个通知,每个通知之间的时间间隔为3秒)。 这是我的方法调度通知:
-(void)scheduleForToday
{
for (UILocalNotification *notif in [[UIApplication sharedApplication]scheduledLocalNotifications])
[[UIApplication sharedApplication]cancelLocalNotification:notif];
for (NSString *string in self.words){
NSDateComponents *currentComponents = [[NSCalendar currentCalendar]components:NSYearCalendarUnit|NSDayCalendarUnit|NSMonthCalendarUnit|NSHourCalendarUnit fromDate:[NSDate date]];
[currentComponents setHour:hour];
[currentComponents setMinute:minute];
currentComponents.second = 0;
UILocalNotification *notif = [[UILocalNotification alloc] init];
notif.timeZone = [NSTimeZone timeZoneWithAbbreviation:@"GMT"];
currentComponents.second = [self.words indexOfObject:string]*3;
notif.fireDate = [calendar dateFromComponents:currentComponents];
notif.alertBody = [NSString stringWithFormat:@"%@",word];
notif.alertAction = NSLocalizedString(@"key", nil);
notif.userInfo = userDict;
[[UIApplication sharedApplication] scheduleLocalNotification:notif];
}
}
执行方法后,我把
NSLog(@"Finished Setiing Today Notifications %@",[[UIApplication sharedApplication] scheduledLocalNotifications]);
我正在获得正确的通知时间表,但是当我的应用程序处于后台时,无论是在设备上还是在模拟器上都没有显示。可能是什么问题?任何建议表示赞赏。
答案 0 :(得分:1)
首先,您可以摆脱取消通知的初始循环并使用:
[[UIApplication sharedApplication] cancelAllLocalNotifications];
然后,不要使用for-in语句,只需使用常规for语句,这样就可以跟踪索引。
for (int i = 0; i < self.words.count; i ++) {
}
然后,对于开火日期,您应该尝试使用NSDate的dateByAddingTimeInterval:
并传递索引+ 1乘以您希望在通知之间的时间量。你以前的做法或多或少地安排所有通知在相隔毫秒内开火。
notif.fireDate = [[NSDate date] dateByAddingTimeInterval:(i + 1) * 3];
答案 1 :(得分:-3)
为NSLocal通知设置repeatInterval
notif.repeatInterval=3*NSSecondCalendarUnit;