What does EKCADErrorDomain code 1014 represent

I'm getting a lot of these errors while trying to use EventKit to access reminders and I'd like to understand what they mean. I haven't been able to find any documentation for the error.

[EventKit] Error getting shared calendar invitations for entity types 3 from daemon: Error Domain=EKCADErrorDomain Code=1014 "(null)"


Anyone know what it means?


Thanks

Replies

Go thru your entity types and confirm.

The error on my side was given by:

eventStore.GetCalendar("calendarId");


Now I have fixed with:

_eventStore.GetCalendars(EKEntityType.Event)
               .FirstOrDefault(c => c.CalendarIdentifier == "calendarId");


I know, this is a workaround, but worked for me in Xamarin.iOS