如何从我们的应用程序中设置iphone日历应用程序中的警报?

时间:2010-12-30 09:05:43

标签: iphone

我已经实现了事件日历应用程序。我已经在我的应用程序中成功地在iphone日历应用程序中添加了事件数据。但我也想从我的应用程序中添加警报。请给我一些想法。

提前致谢。

1 个答案:

答案 0 :(得分:2)

EKEvent *event  = [EKEvent eventWithEventStore:eventStore];
EKAlarm *alarm = [EKAlarm alarmWithRelativeOffset:alarmOffset];
[event addAlarm:alarm];