如何跳过重复UNCalendarNotificationTrigger的第一次出现?

说今天是星期一,现在是下午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 ,而不是重复间隔的第一次出现?