I am trying to access events that are automatically generated from email using the new proactive assistant feature found in iOS 9. Events are displayed in the "Events found in Mail" calendar.
To access these, I do the following
self.eventStore.requestAccessToEntityType(.Event, completion: { (granted, error) -> Void in let predicate = eventStore.predicateForEventsWithStartDate(NSDate(timeIntervalSince1970: timestamp1), endDate: NSDate(timeIntervalSince1970: timestamp2), calendars: nil) let events = eventStore.eventsMatchingPredicate(predicate) }
However, events on this calendar are not indicated. Is this a restriction from Apple, or can I access them in any other way?

ios objective-c iphone swift eventkit
Nilsymbol
source share