Been looking into EventKit but it seems to only create and immediately add the event into device calendar.
eventStore.save(event, span: .futureEvents)
The above code in swift immediately adds the event to the calendar.
The behaviour I'm currently looking for should create an event, given just the name and date of an event, present said event to the user, giving the user the option of pressing "Add to Calendar" before the event is actually added to calendar. This behaviour is equivalent to opening a link to a .ics (iCalendar format) file from a website, like so-
Example from http://www.eventfinda.co.nz/whatson/events/auckland
Any help will be greatly appreciated!