我正在尝试使用iOS 9中的新主动助手功能来访问通过电子邮件自动创建的事件.这些事件显示在“在邮件中找到的事件”日历中.
要访问这些,我正在做以下事情
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) }
但是,未列出此日历中的事件.这是Apple的限制还是我可以通过其他任何方式访问它们?