EKRecurrenceRule 永不重复结束

发布于 2024-12-13 03:59:43 字数 371 浏览 3 评论 0原文

我想在日历中创建一个具有永久重复选项的 EKEvent。以下是循环规则的代码,

  EKRecurrenceRule *rule = [[EKRecurrenceRule alloc] 
                            initRecurrenceWithFrequency:EKRecurrenceFrequencyDaily 
                            interval:1
                            end:[EKRecurrenceEnd recurrenceEndWithEndDate:date]];

如何在循环结束参数中设置无限或永不结束。

谢谢

I want to create a EKEvent in calendar with forever repeat option. Below is the code for the Recurrence rule

  EKRecurrenceRule *rule = [[EKRecurrenceRule alloc] 
                            initRecurrenceWithFrequency:EKRecurrenceFrequencyDaily 
                            interval:1
                            end:[EKRecurrenceEnd recurrenceEndWithEndDate:date]];

how to set infinite or never end in recurrence end argument.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

若相惜即相离 2024-12-20 03:59:43

有点晚了,但我会回答,因为我在苹果文档中找不到答案。
只需传递 nil 作为结束参数即可。日历将事件的结束时间设置为无限。

EKRecurrenceRule *rule = [[EKRecurrenceRule alloc] 
                        initRecurrenceWithFrequency:EKRecurrenceFrequencyDaily 
                        interval:1
                        end:[EKRecurrenceEnd recurrenceEndWithEndDate:nil]];

日历创建 2 年的重复事件,然后根据需要添加它们。

问候

little late, but i 'll answer, because i could not find the answer anywhere in the Apple Doc.
Just pass nil as end param and there you go. Calender sets the end of the event to infinite.

EKRecurrenceRule *rule = [[EKRecurrenceRule alloc] 
                        initRecurrenceWithFrequency:EKRecurrenceFrequencyDaily 
                        interval:1
                        end:[EKRecurrenceEnd recurrenceEndWithEndDate:nil]];

The calender creates recurrence events for 2 years and then adds them on demand.

greets

肩上的翅膀 2024-12-20 03:59:43
EKRecurrenceRule *rule = [[EKRecurrenceRule alloc] 
                        initRecurrenceWithFrequency:EKRecurrenceFrequencyDaily 
                        interval:1
                        end:nil];

只需将 nil 传递到最后,这样它就会重复一遍。祝您编码愉快。

EKRecurrenceRule *rule = [[EKRecurrenceRule alloc] 
                        initRecurrenceWithFrequency:EKRecurrenceFrequencyDaily 
                        interval:1
                        end:nil];

just pass nil to the end so that it repeats all over. Have a happy Coding.

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