gpt4 book ai didi

ios - 从 iCal 获取事件

转载 作者:行者123 更新时间:2023-11-28 09:03:44 24 4
gpt4 key购买 nike

我正在尝试使用 EventKit 从我在 iPhone 上订阅的日历中获取所有事件。

我只需要这个特定日历中的事件。

有可能得到它们吗?怎么办?

最佳答案

private func getAllEvents() {

let store = EKEventStore()
let cal = store.calendarWithIdentifier(yourCalenderIdentifier)
let oneMonthAgo = NSDate(timeIntervalSinceNow: -30*24*3600)
let oneMonthAfter = NSDate(timeIntervalSinceNow: +30*24*3600)

let predicate = store.predicateForEventsWithStartDate(oneMonthAgo, endDate: oneMonthAfter, calendars: [cal!])

let events = store.eventsMatchingPredicate(predicate)
}

关于ios - 从 iCal 获取事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31386973/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com