[iOS]如何获取日历事件,一个重复事件作为一个事件?

发布于 2024-12-05 21:29:55 字数 494 浏览 1 评论 0原文

我得到日历事件的代码如下:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

羁客 2024-12-12 21:29:55

重复事件有一个只读属性“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文