假设今天是星期一,下午 1 点。我想从今天下午 2 点开始从我的 iOS 应用程序安排每周一次的本地通知。我会这样做:
NSDateComponents *components = [[[NSDateComponents alloc]init]autorelease];
components.weekday = 2;
components.hour = 14;
components.minute = 0;
UNCalendarNotificationTrigger *trigger = [UNCalendarNotificationTrigger triggerWithDateMatchingComponents:components repeats:YES];
//then make a UNMutableNotificationContent and UNNotificationRequest and schedule it
但是,如果我想在下周一下午 2 点开始,如何跳过第一次出现?
以另一种方式问这个问题,我如何安排UNCalendarNotificationTrigger
在某个任意时间开始重复,而不是第一次出现重复间隔?