在我的应用程序中,我必须设置重复UILocalNotification
。我可以通过执行将repeatInterval 设置为每天、每周等
UILocalNotification *localNotification = [[UILocalNotification alloc] init];
localNotification.repeatInterval = NSDayCalendarUnit; // or any other calendarUnit
好的..很好,但我必须每 14 天设置一次 repeatInterval。我从这个链接知道我们只能使用 NSCalendarUnit 重复间隔之一。因此,您可以设置一分钟、一小时或一天的重复间隔,但不能设置为五分钟、三小时或 14 天。关于 iOS 5 或更高版本中的此限制的任何想法(该文章是为 iOS 4.0 编写的)?