如何以编程方式在 iPhone 上创建将同步到 iCal 的新日历

发布于 2024-09-12 05:38:19 字数 128 浏览 2 评论 0原文

我正在寻找一种以编程方式在 iPhone 设备上创建新日历的方法。我一直在查看事件工具包,它清楚地说明了如何在日历中创建新事件,并且还有一种在代码中收集所有日历的便捷方法,我找不到的是如何创建一个新事件保存到设备。

任何想法'

I'm looking for a way to create a new Calendar on the iphone device programatically. I have been looking at Event Kit and it clearly states how to create a new event in a calendar and there is also a convenient way of gathering all the calendars in code, What I can't find is how to create a new one that is saved to the device.

Any ideas'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

多情出卖 2024-09-19 05:38:19

检查此 kal 存储库,以编程方式创建 iphone 日历,与 iCal 相同

检查此方法以编程方式创建事件:

-(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;

}

Check this kal repository for creating programmatically iphone calendar same as iCal

Check this method for creating programmatically event:

-(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;

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文