Event Kit is a framework in iOS which provides classes for accessing and modifying calendar event information.

learn more… | top users | synonyms

0
votes
0answers
13 views

How to modify EKEventEditViewController?

I have integrated the eventKit framework and am using the EKEventEditViewController to organize the events, but I want to change its UI. See here: I want to add the two more fields to that view. ...
0
votes
2answers
22 views

Won't save changes to an EKEvent that has recurrenceRules

The following code works for non-recurring events, changes to startDate and endDate are saved just fine. BOOL success = [theEventStore saveEvent:event ...
0
votes
1answer
14 views

Create new Reminders list with EventKit?

My app uses EventKit to read and write new reminders to and from the Reminders app, which works well. However, I've only found a way to write reminders to the default list that the user selects in the ...
0
votes
0answers
21 views

Checking duplicate events does not working when start and enddate is the same

I have encountered this problem; if event's start date and end date is exactly the same following method to check event is calendar does not work and user can add multiple events with exact same ...
0
votes
1answer
111 views

iOS App Error: I screwed up somewhere in date calculation

My app crashing randomly, I can't generate same case that occurs in user's devices, here more details from the crash report: Crash CLASS: NSInternalInconsistencyException FUNCTION: ...
0
votes
0answers
11 views

Check EKCalendar

Good day! I use function "Save event to calendar" via UIActivityItems. In that function I create new calendar and add event to this calendar: EKEventStore* eventStore = [[EKEventStore alloc] init]; ...
3
votes
2answers
103 views

Reminders.app two-way synchronisation logic

I want my app to synchronise with the Reminders.app. (my app utilizes Core Data) I've already done a prototype and it works, but there are some bugs I can't think through. Right now my sync ...
0
votes
1answer
44 views

Generate .ics file on iOS

I'm building ios application that must generate .ics file from iPhone Calendar, but can't found solution for it. As I see EventKit Framework doesn't give this functionality, maybe some other ...
0
votes
0answers
14 views

EventEditviewController not adding event for default calender

In my application I'm adding a calendar entry with EKEventEditViewController EKEvent *event = [EKEvent eventWithEventStore:self.eventStore]; event.title = self.selectedPost.postTitle; ...
0
votes
1answer
52 views

iCal add event error only on fresh installations, and fixed by restart

I have recently released an app and instantly found an annoying bug. There is a button to add events to iCal. When pressed the user is asked to allow the app access to the calendar. If the user clicks ...
3
votes
0answers
73 views

EKParticipant in EventKit erroneously returns NO for isCurrentUser property

I'm attempting to determine which of an EKEvent's attendees (EKPartipants) is the current user. In iOS6, EKParticipant exposes a property called isCurrentUser ...
0
votes
1answer
46 views

Create a calendar in iOS

I have an app which I need to create a calendar to save events that are created by said application. The calendar should be used only inside the app but could have the option to sync to the default ...
0
votes
0answers
34 views

Reordering EKReminders

The EventKit framework provides methods which fetch an array of reminders/events for a given search predicate. What I'm trying to figure out is the best way of reordering a UITableView with cells ...
0
votes
0answers
142 views

Phonegap plugin - Calendar iOS - add recurring event

I am trying to add a reuccring event to the iOS calendar - I am using the following plugin for phonegap at present. ...
2
votes
3answers
291 views

Failing to save EKReminder in iOS 6

I am trying to save/ retrieve reminders from my app, but for some reason the EKReminder seems as though it is not being saved. Here is my code: EKEventStore * _eventStore = [[EKEventStore alloc] ...
0
votes
1answer
65 views

Xcode: Event not created in Calendar : issue With Timezone?

ddI am facing issue while creating Event in Native CALENDAR, When i pass event.startDate anything other than present timestamp... also event.endDate not working with different value as below.. - ...
0
votes
0answers
39 views

EKCalendar is not selected in Calendar app

I'm working on an app that needs to be in sync with the device calendar, usually I sync about 30-50 events. From time to time, I need to refresh that list so I delete the old calendar and I create a ...
2
votes
2answers
158 views

Syncing EKRecurrenceRules with Cloud Service RFC 2445 iCalendar specification RRULE

I'm trying to create a cloud based service which stores recurring Events. I have chosen to do this using the icalendar RRULE standards (RFC2445) and use a database schema as below exposed via cloud ...
0
votes
1answer
36 views

why does EKEventEditViewController take ~3 seconds to load

I have a EKEventEditViewController that I initializie and present like this: EKEventEditViewController *addController = [[[EKEventEditViewController alloc] initWithNibName: nil bundle: nil] ...
0
votes
0answers
31 views

MBProgressHUD object not show when do requestAccessToEntityType for EKEntityTypeEvent

I want to show the MBProgressHUD object - progressHud during process auto add about 100 events to calendar. Here is codes when i touch on the button to do this task. - ...
1
vote
0answers
47 views

What exactly constitutes a “full calendar sync” in EKCalendar?

The documentation for the EKCalendar class states this for the calendarIdentifier property: A full sync with the calendar will lose this identifier. You should have a plan for dealing with a ...
0
votes
1answer
40 views

Saving an EKCalendar

Once you create an EKCalendar, it's often said that you should hold onto the calendarIdentifier to retrieve that calendar later. However, the documentation notes that the identifier will change ...
-6
votes
2answers
107 views

Programatically add reminder to Reminder app [closed]

I've seen questions like this asked before, but they are outdated as the answers only state "support for this is coming in iOS 6." So please do not dismiss this question as a duplicate. Anyways, let ...
0
votes
1answer
50 views

ios Event Kit using my own notifications

Using Apple's EventKit.framework, the notifications can only come from Calendars app and Reminders app. Any way to make my own notifications but use Apple's calendar database? I mean that the ...
0
votes
0answers
59 views

How to create calendar programaticaly and add event in it programtically

I want to make a calendar app. In this I have to add an event for a particular date... I have created calendar through button with grid view. Now Is it possible to add event in calendar which made by ...
1
vote
1answer
48 views

Monotouch EventKit - Not Able To Retrieve EventIdentifier

I am using the example found here : http://docs.xamarin.com/guides/ios/platform_features/introduction_to_eventkit#4.3.creating-an-event-programmatically I asked Xamarin and they said I was supposed ...
0
votes
2answers
811 views

URL Scheme for opening the iCal app at a date or event?

The Apple URL Scheme Reference gives a nice overview of a number of URL schemes you can use to open certain built-in apps with some parameters. I know that this is not a complete list of all possible ...
0
votes
1answer
37 views

EventKit truncates result set when Time Zone Support is set to something other than the systemTimeZone

In the iOS Settings app, there is a setting called "Time Zone Support" (Settings > Mail, Contacts, Calendars > Time Zone Support). If this setting is OFF, there are no issues. Also, if this setting ...
0
votes
0answers
33 views

Is it possible to get deleted instances of recurring event in Event Kit?

-(NSArray *)eventsMatchingPredicate:(NSPredicate *)predicate return only instances of "active" events. If event was removed at some date, this function doesn't return instance for that date. So, is ...
3
votes
1answer
71 views

Search ios reminders without date

I'm familiar with using the eventstore search predicates like predicateForIncompleteRemindersWithDueDateStarting:Ending:Calendars: but I'm trying to figure out how I can search for any incomplete ...
0
votes
0answers
47 views

Setting Exchange categories in iOS App

Is it possible to set the categories of an Exchange object via EVentKit in iOS? I am seeking a solution without using any external services like EWS.
2
votes
1answer
70 views

How do you create a local calendar?

I'm trying to create a new iOS local calendar to store events related to my application. The reason for this instead of just storing the EventIdentifiers is because this application can sync between ...
0
votes
0answers
53 views

Mask UIWebView as a button to display the 'Show in Calendar' action sheet allowed in app store?

I need to jump to iOS calendar and show a specific day. I read through the documentation and there is no schema url for the calendar app but I could find a hack that is embedding a date into a ...
0
votes
0answers
27 views

Getting EventKit details in iOS (Time-Frame)

I am currently working with the KAL calendar framework and have implemented a Kal calendar month view within a Root->TabbarController->NavigationController->SegmentedControllerView. I was able to ...
0
votes
0answers
65 views

Some strange error occurs when manipulating events in the calendar of iOS device

I added some events to the calendar and save their eventIdentifier to file. When i want to remove all my events i read the eventIdentifier from that file to an array and remove each event with its ...
2
votes
1answer
140 views

iOS How to add many events to calendar by one loop

I know that code below is very useful for create and add an event to iOS calendar. It work great and i can add many events, but with one event i have to make one touch on the button. - ...
0
votes
0answers
93 views

EKReminder Interval strange behavior [closed]

I'm trying to figure out how to set a simple recurring reminder that gets posted every 2 days. However, I am encountering some strange behavior. First, here is the code I am using to create the ...
0
votes
0answers
31 views

NSDatePicker Graphical Representation - Mark Dates mac osx

I was looking at the EventKit framework for mac osx developement. I am working on an app that loads the data from calendar app ( say public holidays for this year) and load it into the msdatepicker's ...
1
vote
0answers
99 views

Adding an EKAlarm to EKReminder with a recurrence rule

I have a quick question for someone familiar with Event Kit... I'm creating recurring reminders and I'd like an alarm to sound at each recurrence. However, the documentation suggests I can only ...
2
votes
3answers
827 views

How to access an EKCalendar's `account` property

Take a look at the documentation for EKCalendar. It's pretty simple, it has five properties, only one of which is a string called title. Now if you have multiple calendars on your iPhone and you open ...
0
votes
0answers
31 views

EvenKitUI ViewController for choosing calendars

I'm working on a calendar app functionality and I saw that I can use EventKitUI to easily create and edit calendar events. I want to create a view for the user to choose which calendar he want to ...
0
votes
1answer
698 views

Add event to calendar with EventKit Mountain Lion

I added the framework EventKit and I have this code. I can't add an event at default calendar. #import "Calendar.h" #import <EventKit/EventKit.h> @implementation Calendar ...
0
votes
1answer
88 views

iOS: Save which is the preferred EKCalendar some how?

I'm building a small calendar application where a user can select which calendar the events should be entered into. So the users picks their calendar of choice from a pickerview in the settingsmodal, ...
0
votes
0answers
48 views

Retrieve event from event kit on specified date in iPhone

I am using event kit in my iPhone application.I stored event successfully.But i cannot retrieve event on a specified date.I used the following code for retrieving events.But it is not working ...
2
votes
1answer
80 views

EKEventEditor crash on iPhone but not on iPad

I'm trying to call a native iOS calendar event edit window modally from my iPhone app using the following code set to respond from a UIButton: - (void) initCalendar:(id) sender { EKEventStore ...
0
votes
2answers
624 views

Kal showing 2 cells for the same event

I have created an iphone application which utilises the Kal framework within a tab bar environment. i create a new event using the EVENTKIT framework and it shows up to the user like this: after ...
3
votes
1answer
149 views

How to customise EKEventEditViewController

I am using default EKEventEditViewController in my App and I want to customize it, currently it shows all fields that came in default EKEventEditViewController, but I don't want to show URL field and ...
1
vote
0answers
103 views

How many events can i add to the calendar app in iOS?

I use this code to add events to the calendar app on iOS int i = 0; for(Schedule *sche in scheduleArray){ EKEventStore *eventStore=[[EKEventStore alloc] init]; EKEvent *addEvent=[EKEvent ...
0
votes
0answers
51 views

calendarWithIdentifier returns a non existing calendar

there's a strange bug in my app; it probably surfaced with iOs 6. cal = [self.eventStore calendarWithIdentifier:myCalendarIdentifier]; cal is not present in self.eventStore.calendars. Also, ...
1
vote
1answer
222 views

iOS: EKEventStoreChangedNotification. When is it sent?

I've got an app that shows calendar events. I want it to update whenever there's a change to the user's calendar in iCloud. The docs claim EKEventStoreChangedNotification is sent when an event is ...

1 2 3 4 5