我想知道如何以编程方式阅读iPhone日历中的所有事件?
我知道我们可以检索已知日期事件的方式。以下代码检索当前日期的事件。但是如何在iPhone日历中检索所有已保存的事件,即。不依赖日期?
NSDate *startDate = [NSDate date];
// endDate is 1 day = 60*60*24 seconds = 86400 seconds from startDate
NSDate *endDate = [NSDate dateWithTimeIntervalSinceNow:(86400*1)];
// Create the predicate. Pass it the default calendar.
NSArray *calendarArray = [NSArray arrayWithObject:defaultCalendar];
NSPredicate *predicate = [self.eventStore predicateForEventsWithStartDate:startDate endDate:endDate calendars:calendarArray];
// Fetch all events that match the predicate.
NSArray *events = [self.eventStore eventsMatchingPredicateredicate];
答案 0 :(得分:1)
您可以使用以下三种方式从用户的日历数据库中获取事件:1)将事件作为事件存储获取2)使用谓词获取事件3)使用标识符获取单个事件
您可以使用谓词或标识符,按照IOS指南查看一些检查和详细信息。
希望这有助于。答案 1 :(得分:1)
此bello代码用于从设备日历中获取所有日历事件 只需复制粘贴下面的代码即可获得所有活动
EventKitUI/EventKitUI.h
- >导入此文件
EKEventStore *store = [[EKEventStore alloc] init];
[store requestAccessToEntityType:EKEntityTypeEvent completion:^(BOOL granted, NSError *error) {
if(granted) {
NSDate* startDate = /* whatever value you want */
NSDate* endDate = /* whatever value you want */
NSPredicate *fetchCalendarEvents = [store predicateForEventsWithStartDate:startDate endDate:endDate calendars:nil];
NSArray *eventList = [store eventsMatchingPredicate:fetchCalendarEvents];
NSLog(@"allevent:%@",eventList);
}
}];
答案 2 :(得分:0)
NSDate* startDate = [NSDate distantPast];
NSDate* endDate = [NSDate distantFuture];