[iOS]如何获取日历事件,一个重复事件作为一个事件?
我得到日历事件的代码如下:
NSDate *startDate1 = [NSDate date];
NSDate *endDate1 = [NSDate distantFuture];
NSPredicate *predicate = [eventStore predicateForEventsWithStartDate:startDate1 endDate:endDate1 calendars:calendarArray];
NSArray *events = [eventStore eventsMatchingPredicate:predicate];
但是如果我添加一个重复事件,如果频率是每周,“事件”将有 209 个对象;如果事件频率为每两周一次,“事件”将有 105 个对象。 我算了一下时间,也有四年的时间了。
如何获取事件,一个重复事件只有一个对象?
//我正在使用 event.eventIdentifier 进行测试...
I get calendar event as the following code:
NSDate *startDate1 = [NSDate date];
NSDate *endDate1 = [NSDate distantFuture];
NSPredicate *predicate = [eventStore predicateForEventsWithStartDate:startDate1 endDate:endDate1 calendars:calendarArray];
NSArray *events = [eventStore eventsMatchingPredicate:predicate];
But if I add a recurrence event, if the frequency is every week, the 'events' will has 209 objects; if a event frequency is every 2 week, 'events' will have 105 objects.
I compute the time, it is 4 years of time also.
How can I get the event, one recurrence event only has one object?
//I'm testing using event.eventIdentifier...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
重复事件有一个只读属性“isDetached”。
此外,您还可以在以下位置找到有关重复规则等的详细信息:
WWDC 2010 视频、Session 136 Calendar Integration with Event Kit。
Repeated events has a read-only property 'isDetached'.
Also, you can find the details about recurrence rules, etc. in:
WWDC 2010 videos, Session 136 Calendar Integration with Event Kit.