Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法从自定义应用程序将 iCal 事件编辑到 iPhone 日历?在我的应用程序中,我必须将事件保存到设备校准。以及如何从我的应用程序编辑设备校准中保存的事件。
为此,您可以使用
- (EKEvent *)eventWithIdentifier:(NSString *)identifier;
--> 您将获得带有您发送的特定标识符的 EKEvent...
--> 然后更改其详细信息,例如“描述”、“日期”等
--> 将此事件添加到 EKEventStore 并将其添加到 iCal 使用
[eventStore saveEvent:event span:EKSpanThisEvent error:&err];
我想它应该工作这完全基于我的记忆。