如何使用EventKit编辑日历中的特定事件?

时间:2015-02-11 14:47:43

标签: ios objective-c eventkit

我想以编程方式编辑日历中的特定存储事件。我认为它可以通过事件标识符完成,但我不知道这样做的正确方法。

1 个答案:

答案 0 :(得分:0)

检查此库JSCalendarManager它会对您有所帮助,并为方便起见准备好所有方法并进行抽象。

要更新活动,请使用以下方法

 /*!
 @method     updateEvent: withTitle: location: startTime: endTime: description: URL: completionHandler:
 @discussion Call this method to retrieve and update an event.
 */
-(void)updateEvent:(NSString *)eventIdentifier
         withTitle:(NSString *)title
          location:(NSString *)location
         startTime:(NSDate *)start
           endTime:(NSDate *)end
       description:(NSString *)descrition
               URL:(NSString *)urlString
 completionHandler:(eventsOperationCompletionHandler)handler;