Events & Reminders on iOS

  Many apps take advantage of the Events or Reminders on iOS. This is very useful when wanting to give the user the ability to add an event to the calendar or a reminder. This is quite simple to do, so let’s take a look.  Create an NSObject Class to manage all our EventKit stuff and add the following: #import <EventKit/EventKit.h> @property (strong, readonly) EKEventStore *eventStore; @property (assign, readonly) BOOL eventAccess; @property (assign, readonly) BOOL reminderAccess; So far we are simply importing the EventKit, which by the way you must add as Link Library in Target Settings, Summary.  Then we add a property to access the EventStore and some booleans.… Read More

Continue Reading