xcode 如何在默认日历中以编程方式创建 iCal 事件?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/3423486/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-14 19:36:44  来源:igfitidea点击:

How can I programmatically create an iCal event in the default calendar?

iphoneobjective-cxcodecalendar

提问by codeburger

How can I use Objective-C to programmatically create an iCal event in the default calendar? I want to check whether the event already exists and set the button state accordingly.

如何使用 Objective-C 在默认日历中以编程方式创建 iCal 事件?我想检查事件是否已经存在并相应地设置按钮状态。

回答by Nicolas S

An example of how to programmatically create an iCAL event in the default calendar, using Objective-C. The code checks if the event already exists, and sets the button state accordingly. Here is the code by @codeburger:

如何使用 Objective-C 在默认日历中以编程方式创建 iCAL 事件的示例。代码检查事件是否已经存在,并相应地设置按钮状态。这是@codeburger的代码:

-(void)initCalendar {

 // An array of 1 dictionary object, containing START and END values.
 NSMutableArray* pvDict  = [[NSMutableArray alloc] initWithContentsOfURL:[NSURL URLWithString:PV_URL ]];

 // Check if the private view event already exists in the default calendar.
 // Then set the calendar button state.

 // Get a entry point to the Calendar database.
 self.store = [[EKEventStore alloc ] init ];

 // Get an array of all the calendars.
 NSArray *calendars = store.calendars;

 // Get the default calendar, set by the user in preferences.
 EKCalendar *defaultCal = store.defaultCalendarForNewEvents;

 // Find out if this calendar is modifiable.
  BOOL isDefaultCalModifiable = defaultCal.allowsContentModifications ;

 // Create an event in the default calendar.

  self.event = [ EKEvent eventWithEventStore:store ];

 self.event.title = CHELSEA_SPACE ;
 self.event.location = CHELSEA_ADDRESS ;

 NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
 [dateFormatter setDateFormat:@"yyy-MM-dd HH:mm:ss.S"];

 NSString *startString = [[ pvDict objectAtIndex:0] objectForKey:@"starts" ];
 NSDate *dateStart = [dateFormatter dateFromString:startString];

 NSString *endString = [[ pvDict objectAtIndex:0] objectForKey:@"ends" ];
 NSDate *dateEnd = [dateFormatter dateFromString:endString];

    self.event.startDate = dateStart;
 self.event.endDate   = dateEnd; 

 self.event.calendar = defaultCal ;

 // Alternative code to add 2.5 hours to start time.
 // [[NSDate alloc] initWithTimeInterval:9000 sinceDate:event.startDate];

 // Search for events which match this date/time start and end.
 // Compare the matched events by event TITLE.

 NSPredicate *predicate = [store predicateForEventsWithStartDate:event.startDate 
           endDate:event.endDate calendars:calendars];

 NSArray *matchingEvents = [store eventsMatchingPredicate:predicate];

 self.calendarButton.enabled = NO;

 if( ! isDefaultCalModifiable ) {
  // The default calendar is not modifiable
  return ;
 } 

 if ( [ matchingEvents count ] > 0 ) {

  // There are already event(s) which match this date/time start and end.
   // Check if this event is the PV

  EKEvent *anEvent;  
  int j;

  for ( j=0; j < [ matchingEvents count]; j++) {

   anEvent = [ matchingEvents objectAtIndex:j ] ;
   if([ CHELSEA_SPACE isEqualToString: anEvent.title ]) {
    // PV event already exists in calendar.
    return;
   }
  }
  [ anEvent release ];
 }

 self.calendarButton.enabled = YES;

 [ pvDict release ];
}

-(void)addEventToCalendar:(id)sender {

 NSError *error;
 BOOL saved = [self.store saveEvent:self.event span:EKSpanThisEvent error:&error]; 

 NSLog(@"Saved calendar event = %@\n", (saved ? @"YES" : @"NO"));
 self.calendarButton.enabled = NO;

}

I've seen this question with no answer and felt like it should be edited giving full credit to @codeburger.

我看到这个问题没有答案,觉得应该编辑它,完全归功于 @ codeburger

回答by iKushal

 EKEventStore *eventStore = [[EKEventStore alloc] init];

 EKEvent *event = [EKEvent eventWithEventStore:eventStore];
 NSDate *date = [[NSDate alloc ]init];//today,s date
 event.title = @"remainder";//title for your remainder

 event.startDate=date;//start time of your remainder
 event.endDate = [[NSDate alloc] initWithTimeInterval:1800 sinceDate:event.startDate];//end time of your remainder

 NSTimeInterval interval = (60 *60)* -3 ;
 EKAlarm *alarm = [EKAlarm alarmWithRelativeOffset:interval]; //Create object of alarm

 [event addAlarm:alarm]; //Add alarm to your event

 [event setCalendar:[eventStore defaultCalendarForNewEvents]];
  NSError *err;
  NSString *ical_event_id;
  //save your event
 if([eventStore saveEvent:event span:EKSpanThisEvent error:&err]){
        ical_event_id = event.eventIdentifier;
        NSLog(@"%@",ical_event_id);
 }

 for more info check this link

sample for EKEvent

EKEvent 示例