NSPredicate *eventsForThisYear = [NSPredicate eventPredicateWithStartDate:startDate endDate:endDate calendars:[[CalCalendarStore defaultCalendarStore] calendars]];
NSArray *events = [eventDB eventsMatchingPredicate:eventsForThisYear];
In the following code I got an error saying 'CalCalendarStore' is undeclared (first use in this function)
In xcode 4.2. I did not find any CalCalendarStore Framework.