我想以编程方式编辑日历中的特定存储事件。我认为它可以通过事件标识符完成,但我不知道这样做的正确方法。
答案 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;