我正在制作一个提醒应用,用户创建一些带有日期和时间的事件,并选择何时通过选择一个开火日期(此事件之前的间隔:现在,5,15,30分钟前,等等)和重复间隔(从不,每天,每周,每月和每年)。问题是:当用户创建已经发生的事件时,例如事件应该发生在4月10日,今天是4月16日,他应该及时提醒他这个事件,但是用户在创建后立即获得有关此事件的通知它。所以不应该发生。我怎么能避免这个? 以下是创建通知的方法
- (void)notificationWithNote:(Note *)scheduledNote deleteThisNotification:(BOOL)deleteNotification {
NSCalendar *calendar = [NSCalendar autoupdatingCurrentCalendar];
unsigned int unitFlags = NSYearCalendarUnit|NSMonthCalendarUnit|NSDayCalendarUnit|NSHourCalendarUnit|NSMinuteCalendarUnit;
NSDateComponents *comp = [calendar components:unitFlags fromDate:scheduledNote.date];
ToDoItem *todoitem = [[ToDoItem alloc] init];
todoitem.day = [comp day];
todoitem.month = [comp month];
todoitem.year = [comp year];
todoitem.hour = [comp hour];
todoitem.minute = [comp minute];
todoitem.eventName = scheduledNote.event;
NSDateComponents *dateComps = [[NSDateComponents alloc] init];
[dateComps setDay:todoitem.day];
[dateComps setMonth:todoitem.month];
[dateComps setYear:todoitem.year];
[dateComps setHour:todoitem.hour];
[dateComps setMinute:todoitem.minute];
NSDate *itemDate = [calendar dateFromComponents:dateComps];
[dateComps release];
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
if (localNotif == nil)
return;
if ([scheduledNote.remindTime intValue] == 1)
localNotif.fireDate = itemDate;
else
localNotif.fireDate = [itemDate dateByAddingTimeInterval:-([scheduledNote.remindTime intValue]*60)];
switch ([scheduledNote.repeatOption intValue]) {
case 0:
localNotif.repeatInterval = 0;
break;
case 1:
localNotif.repeatInterval = NSDayCalendarUnit;
break;
case 2:
localNotif.repeatInterval = NSWeekCalendarUnit;
break;
case 3:
localNotif.repeatInterval = NSMonthCalendarUnit;
break;
case 4:
localNotif.repeatInterval = NSYearCalendarUnit;
break;
default:
break;
}
localNotif.timeZone = [NSTimeZone defaultTimeZone];
localNotif.alertBody = [NSString stringWithFormat:NSLocalizedString(@"%@ begins", nil), scheduledNote.event];
localNotif.alertAction = NSLocalizedString(@"View Details", nil);
localNotif.soundName = UILocalNotificationDefaultSoundName;
localNotif.applicationIconBadgeNumber = 1;
NSDictionary *infoDict = [NSDictionary dictionaryWithObjectsAndKeys:todoitem.eventName,ToDoItemKey, @"Timenote is coming", MessageTitleKey, nil];
localNotif.userInfo = infoDict;
if (deleteNotification)
[[UIApplication sharedApplication] cancelLocalNotification:localNotif];
else
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
NSLog(@"fire date: %@",[localNotif.fireDate description]);
[todoitem release];
[localNotif release];
}
仅当用户未选择任何重复间隔时才会发生此错误。如果事件每天/每周/每月/每年重复,则会及时提醒。所以问题是localNotif.repeatInterval == 0
答案 0 :(得分:1)
看起来,我找到了答案。如果只发生问题,当没有重复间隔时,则需要检查这种情况:如果fireDate小于当前日期,如果没有重复间隔,则不应该安排此通知。
NSComparisonResult result = [localNotif.fireDate compare:[NSDate date]];
if (((localNotif.repeatInterval == 0) && (result == NSOrderedAscending)) || deleteNotification)
{
[[UIApplication sharedApplication] cancelLocalNotification:localNotif];
}
else
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];