我試圖訪問使用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的限制還是我可以用其他方式訪問它們?
非常感謝。你是一位敏捷的導師 – Nilsymbol