EKEvent accepts an event

I wonder how I can set the accept status / maybe / reject the member status for EKEvent for which the current user has been invited?

I can check the membership set, but EKEvent not found anything for which I can set its status.

+1
ios ekeventstore eventkit ekevent
source share
1 answer

The state is maintained for each EKParticipant participant (not for EKEvent itself), but you cannot set it programmatically: [EKParticipant participantStatus] read-only. In Apple docs

Event Kit cannot add participants to an event or change participant information.

The closest approximation to this would be to recreate the event using the EventKitUI components and allow the user to update the event as they wish.

0
source share

All Articles