I get calendar event as the following code:
NSDate *startDate1 = [NSDate date];
NSDate *endDate1 = [NSDate distantFuture];
NSPredicate *predicate = [eventStore predicateForEventsWithStartDate:startDate1 endDate:endDate1 calendars:calendarArray];
NSArray *events = [eventStore eventsMatchingPredicate:predicate];
But if I add a recurrence event, if the frequency is every week, the 'events' will has 209 objects; if a event frequency is every 2 week, 'events' will have 105 objects. I compute the time, it is 4 years of time also.
How can I get the event, one recurrence event only has one object?
//I'm testing using event.eventIdentifier...