在DEBUG模式下构建时,EKEventStore的源可以正确返回,但在RELEASE模式下始终返回nil并出现错误
EKCADErrorDomain error 1019.
代码:
import EventKit
let eventStore = EKEventStore()
eventStore.requestAccess(to: .event, completion: {
(granted, error) in
if granted {
print("granted \(granted)")
print("eventStore.sources:\(eventStore.sources)")
}
})
我确实将密钥NSCalendarsUsageDescription添加到info.plist中,并且还使iCloud能够访问日历。任何人都可以为这个问题提供帮助吗?