EKRecurrenceRule 永不重复结束
我想在日历中创建一个具有永久重复选项的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有点晚了,但我会回答,因为我在苹果文档中找不到答案。
只需传递 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.
The calender creates recurrence events for 2 years and then adds them on demand.
greets
只需将 nil 传递到最后,这样它就会重复一遍。祝您编码愉快。
just pass nil to the end so that it repeats all over. Have a happy Coding.