A class in the iOS Event Kit Framework that allows an instance of it to represent an event from a calendar.

learn more… | top users | synonyms

0
votes
1answer
42 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
18 views

Get modified calendar events in iOS

Is there any way to get only the modified calendar events between a certain time interval programmatically in ios. eg:- Suppose we have 4 events between 1st May 2013 to 6th May 2013. May 1-: evnt 1, ...
0
votes
1answer
43 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 ...
0
votes
0answers
16 views

remove recurrenceRule of ekreminder with picker view

I thank you in advance. I'm really looking forward to your help., I am trying to handle recurrence rule of a EKReminder with a UIPickerView. Everything works fine except removing the rule. My ...
0
votes
0answers
19 views

Using EkCalendarChooser Multiple selection feature

Having a serious issue working with the EKCalendarChooser view controller. I was able to get the view controller to present, good, then I was able to get the single selection feature to work correctly ...
1
vote
0answers
21 views

EKEvent is saving in iPad calendar but not in iPhone calendar

In my app, i need to save the events to the device calendar, it does save in the iPad calendar but not in iPhone calendar...which is strange. This is my code -(IBAction)addToCalendar:(id)sender { ...
0
votes
1answer
29 views

NSDateFormatter not formatting dates correctly when adding events to calendar

I am having trouble figuring out how to parse a certain date format using NSDateFormatter and putting it into an EKEvent. At the moment this is my code. I have already requested permission to add ...
1
vote
0answers
29 views

How to detect which EKevent was changed

I got the problem I need to know when Events in my EventStore is changed, so for this case i use EKEventStoreChangedNotification but this notification return to me incomprehensible dictionary in ...
0
votes
0answers
273 views

Import .ics file to iOS user calendar

I'm trying to add .ics files to the users calendar. I've tried the UIDocumentInteractionController to do this, but this only shows a preview window and not the view to add the events, like it does ...
0
votes
0answers
22 views

Parsing EKEvent description text

I am currently working on an iOS application that uploads an EKEvent's event.description that is a basic NSString. Problem is, when I download the file from my server after uploading it, parsing the ...
0
votes
0answers
16 views

Objective-c EKEventEditViewController Dismiss keyboard

I'm presenting an EKEventEditViewController that I need for inserting an event into the calendar. All is fine, but how do I dismiss programmatically the keyboard when I go picking a date?
0
votes
2answers
56 views

Event Date in Calendar sets on day earlier after saving

I am new with EKEventKit and I am trying to create an event in calendar using EKEvent. It works fine but after saving the event when I check again the event date it gets one day earlier. I am writing ...
0
votes
0answers
27 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. - ...
0
votes
0answers
41 views

Converting NSString to NSDate for EKEvent

Currently, I have 2013-06-08 12:00:00 +0000 stored inside of a string. I am having an issue on converting the string to NSDate. NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; ...
1
vote
2answers
75 views

iOS EventKit: Display calendar in a different section other than iCloud / On My iPhone

Is there a way to create a new calendar in my app that will show up in a different section of the native iOS Calendar app? From the pic above, Facebook has its own section for its calendars, so ...
0
votes
0answers
42 views

Adding EKEvents into GCCalendar

I am having an issue using GCCalendar. I am able to display it within my controller no problem with the default events implemented. So every day the same events are displayed at the exact same time ...
0
votes
1answer
46 views

How to convert a calendar event description into a dictionary object in iPhone?

I am fetching the Events from the calendar and for each event i want to fetch all the data. But i am getting some of them as objects like EKRecurrenceRule, EkCalendar, EKAlarm. Now i want to get a ...
0
votes
0answers
38 views

iOS EKEvent to NSString

Is there any API in iOS to get NSString representation of EKEvent object in iCalendar format?
-1
votes
1answer
102 views

Is it possible to add multiple reminder for one local notification? [closed]

Im newbie to UILocalNotification.Im creating a medicine reminder app.I want to show the medicine intake timing in UILocalNotification.Is it possible to remind me everyday three times for single title? ...
0
votes
0answers
39 views

EKEvent is not working in background task

I would like to acquire the iCal(@iPhone device has calendar) by a background task. (app in background after 10 minutes..) Using EkEvent in LocalNotif(didReceiveLocalNotification:),but not working.. ...
0
votes
1answer
34 views

How to Retrieve most recent completed, todo events from default calendar in iOS?

I am using default calendar in iOS5. I have to display most recent three completed activities, most recent three todo events.Those events can be any thing,means it can be any day. Can any one help ...
0
votes
0answers
44 views

Empty calendar property on EKEvents

When reading events from the calendar I get a bunch of events with their titles back. However, properties like calendar stay (null): {EKEvent <0x1e5a6d40> {title = Rosenmontag; location = ...
0
votes
2answers
64 views

custom NSObject class with EKEventAttribute

I have a custom NSObject class where I declare the following attributes and functions in it. @property (nonatomic, retain, readonly) NSDate *date; @property (nonatomic, retain, readonly) NSString ...
0
votes
1answer
117 views

ARC Memory Leak in cellForRowAtIndexPath when accessing [EKEvent notes]

I'm using ARC with xCode 4.6 and I'm getting a memory leak when trying to access the .notes property of an EKEvent to assign to a string in cellForRowAtIndexPath. The funny thing is, the leak never ...
0
votes
0answers
70 views

list of EKReminder - IOS5?

we can get calendar(EKCalendar) on iOS5 with EKEventStore.calendars , iOS6 : calendarsForEntityType,and get reminder list or remiders of EKCalendar by create predicate: fetchRemindersMatchingPredicate ...
0
votes
0answers
142 views

Issues with EKEvent.eventIdentifier

i'm having issues calling EKEventEditViewController by giving it an eventIdentifier, it barely works, BUT when the problem is when the event has Recurrence Rules ! example : 1) I create an EKEvent ...
0
votes
1answer
28 views

Grants Calendars Privacy access Issue

In my code I am handling all cases for ios 6 calendar privacy, if the user allows access to calendars, i called some method like following: [self performSelector:@selector(reloadData) ...
0
votes
1answer
115 views

Xcode setDateFormat: wrong year

I found this problem by using EKEvent to add an event to calendar with my App. Since I didn't found any resources, I would like to know if you have ever hear about that. I had an old app (developed ...
0
votes
2answers
347 views

EKEvent for iOS 6 not working in any way possible

I have tried asking for permission with if([eventStore respondsToSelector:@selector(requestAccessToEntityType:completion:)]) { // iOS 6 and later ...
1
vote
2answers
161 views

How set no alarm in EKEvent in calendar

when i create a new EKEvent for a calendar i notice that automatically add an alarm ad 9 of the event day, how i can set no alarm? i have tried in this way: EKEvent *event = [EKEvent ...
0
votes
1answer
196 views

predicateForEventsWithStartDate:endDate:calendars: EKEventStore doesn't work

i have saved 28 EKEvent in a EKCalendar in this range date: 2012-01-01 and 2013-01-18, the EKEvent are all stored and i can see it in the iOS Calendar on iCloud, then i want retrieve all this EKEvent ...
1
vote
1answer
186 views

predicateForEventsWithStartDate doesn't work

i'm trying to fetch event from a calendar, and i'm doing it using this method: predicateForEventsWithStartDate:endDate:calendars: but if i create a start date like this: NSString *str =@"3/15/1980 ...
0
votes
1answer
262 views

Retrieve EKEvent with specific title in EKEventStore

Hello i have saved some EKEvent in a specific calendar on iCloud, i want retrieve some of these EKEvent with a specific title, it's possible? i see that there is this method: eventsMatchingPredicate ...
1
vote
2answers
195 views

how to get ekevent EKparticipant email?

how to get ekevent EKparticipant email? EKParticipant class does not have such a attribute. Is it possible to render the native ios participants controller to show the list of participants?
0
votes
1answer
128 views

Kal calendar not fetching data from iPhone calendar

I am trying to work with the Kal calendar. I got a copy from github. You can find it over here. Now when I test the nativeCal demo project on the simulator. It shows events on the calendar. My guess ...
0
votes
1answer
252 views

“Invalid date component” error when set startDateComponents in an EKReminder

I want to save a reminder, but when I set the StartDateComponents, it always says Invalid date component. I try several ways(you can see my commented code) to set the value, but failed. EKReminder ...
0
votes
1answer
386 views

Responding to “cancel” or “Done” in EKEventEditViewController

I'm using a EKEventEditViewController which I'm able to populate with the info I need. I'm granted access to the Calendars and everything. My problem is when I click "Cancel" nothing happens. And when ...
1
vote
0answers
216 views

EKEvent AddAlarm Not Working

[Fixed] (Kind of) Seems you can't have an alarm at the end of an event. I wanted the event to appear spanning x number of days in the calendar, then an alarm to signal when it's due to end. Seems ...
0
votes
0answers
52 views

Setting EKEventAvailabilityNotSupported, but availability always shows “busy”

I'm creating and saving EKEvents and I can't get the availability portion of the event to respond to my code. I would like to create an event that has no 'availability' whatsoever. I don't need the ...
0
votes
1answer
119 views

Instead of Date picker is there any Third Party API Calender's for iOS

Which is the best Third Api calender ?? If you have any tutorial's or the code you built can share here?? That would be a great help.Especially when a third Party api is integrated with EKeventKit. ...
0
votes
1answer
51 views

How to change the starting date of a Calendar Year to something other than Jan 1st?

I'm writing an app that relies on the calendar and calendar events to display data to the user. I need to be able to let the user select the beginning of his/her 'fiscal' year in settings, which ...
1
vote
1answer
123 views

How can I get EventKitUI to use the device language?

I'm using an EKEventEditViewController to create, edit and delete events from the event store, but it always displays in English. Is there a way to localize it, so it will use the default language of ...
1
vote
3answers
1k views

EKEvent with eventWithIdentifier on iOS

If I want to retrieve EKEvent from EKEventStore with eventWithIdentifier method for previously saved event but I always get null. This is the code for adding event: EKEventStore *eventStore = ...
0
votes
0answers
255 views

Adding EKEvent to Calendar: TimeZone is Not Getting Set in GMT

I am using code below to add an event to calendar. It is adding the event, however there's 3 hours difference in the added event. When I log the date while debugging, it is showing the correct date. ...
0
votes
1answer
127 views

How do I get the startDate of an event that is already on my iPhone's calendar?

I am making an app for myself and I need to access the startDate and endDate of specific events that are already in my calendar. How can I go about doing this? I have tried storing a list of events ...
1
vote
0answers
285 views

iOS/Xcode: Cannot find recurrent events with predicateForEventsWithStartDate and startDate and endDate outside my search range

In iOS events are stored by their startDate and endDate and their recurrence rules. If i want to fetch all events for the next 3 days i only get events with the start date within the next three days. ...
0
votes
0answers
18 views

desactivate eventkit log messages

The new EventKit framework on 10.8.1 is sending me a lot of log messages, does anyone know anyway to disable them (the messages) ? EXAMPLE: 2012-08-30 13:08:59.518 Opus One[40186:5b17] Event claimed ...
0
votes
0answers
81 views

How to open my iOS App when an EKEvent had fired

Can anybody help me for Opening My application when calendar event fired which is set by my App. I have to manage my App UI Actually My Requirement is "To set an alarm which has snooze option for ...
1
vote
2answers
1k views

deleting an event using event kit in iphone

I am using event kit in my iOS application and creating a event using event kit. I am able to create it but I want to give facility of delete also. But I am not able to do that. I know there is a ...
0
votes
0answers
138 views

Adding alarms to a custom EKCalendar

I need to make a medical calendar application for iOS. So there are some drug reminders, doctor appointments and several other stuff. At first I was thinking UILocalNotifications were good enough. But ...

1 2