我确信这个问题在某处重复,但我找不到解决方案。我正在制作一个应用程序,其中一个功能允许用户选择他们将收到本地通知的日期和时间。
他们可以选择他们喜欢的一天中的任何时间,并且可以切换一周中的不同日子(周一、周二、周三等)。通知将每周发送一次。因此,我将用户限制为仅创建 3 个通知 - 如果选择了所有 7 天,我会将其设置repeatInterval
为每天(一个通知)。如果为每 3 个通知选择 6 天,那么我将需要为每一天提供一个单独的通知(总共 3x6=18 个通知)。很可能只会使用 1 个通知,所以这很好。
我知道如何在未来的某个时间设置通知,但是我如何设置一个星期一下午 6 点的通知?
以下是我一直用于测试的代码。它会在未来设置 4 秒的警报(我是从 调用它applicationDidEnterBackground
)。
NSDateComponents *changeComponent = [[NSDateComponents alloc] init];
changeComponent.second = 4;
NSCalendar *theCalendar = [NSCalendar currentCalendar];
NSDate *itemDate = [theCalendar dateByAddingComponents:changeComponent toDate:[NSDate date] options:0];
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
localNotif.fireDate = itemDate;
localNotif.timeZone = [NSTimeZone defaultTimeZone];
localNotif.repeatInterval = NSWeekdayCalendarUnit;