Questions tagged [ekeventviewcontroller]
4 questions
2
votes
0 answers
Swift iOS/Mac Catalyst: EKEventViewController and EKEventEditViewController do nothing when tap show all notes or end time
I'm developing an app that manages events and I have an annoying problem that affects both EKEventViewController and EKEventEditViewController, some buttons wont work.
On EKEventViewController
- "Show All Notes" does nothing when you tap over it…

Meroelyth
- 5,310
- 9
- 42
- 52
1
vote
0 answers
SwiftUI - NavigationView with EKEventViewController for editing calendar events
I'm working on an app which relies on EventKit and calendar events and I'm having problems with editing of selected events. I'm using a Navigation View and I want to push an EKEventViewController (by interfacing with UIKit) for selected events.
The…

skegget
- 111
- 1
- 7
0
votes
1 answer
Cannot Dismiss EKEventViewController in Landscape View
When I open a calendar event in my app using EKEventViewController using the code below it correctly displays my event in a modal view.
let eventModalVC = EKEventViewController()
eventModalVC.event = myEvent
eventModalVC.allowsEditing =…
user3386180
0
votes
0 answers
Swift Update EKEvent
Hi I am trying to update an EKEvent. I have successfully been able to add and delete an event by using the same logic.
To add Event I used -> try store.save(event, span: .thisEvent, commit: true)
How do I updated Event ???
To delete Event I used…

Carter Stambaugh
- 9
- 2