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.

link|improve this question

12% accept rate
Is CalCalendarStore your own class? If so you need to import it in your class. If its part of a framework you will need to import the framework – Justin Meiners Jul 14 '11 at 15:26
feedback

1 Answer

You seem to be using Calendar Store framework which is unavailable on iOS. In iOS, you need to use EventKit.

Here's a tutorial. There are many others available online.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.