Questions tagged [ekeventkit]
166 questions
1
vote
1 answer
when user click on particular date a alert will show with that event title
I'm Using SAcalendar.
this is my json:
data: - [
- {
id: "1",
event_start: "2014-06-09 11:30",
event_end: "2014-06-09 12:30",
title: "Click a date to create a new event and drag to change its date and time. Click on an existing event to modify.…

Ketan Odedra
- 1,215
- 10
- 35
1
vote
0 answers
Find exclusion date from EKEvent
If I create a recurring event in iOS and then delete some of the recurrence items, how do I find that out from the EKEvent object? I'm not seeing where it stores the list of exclusions.

Gargoyle
- 9,590
- 16
- 80
- 145
1
vote
1 answer
Sync iPhone Calendar events deletion with events stored in app
I have one issue, if i adding event in calender through the app and if delete that added event from simuloter calendar delete button. Then it will also delete from app, is this possible?
Thanks

Asmita
- 477
- 8
- 20
1
vote
0 answers
Programmatically add custom event in the iPhone Calendar but not deleted it
I am programmatically added event to calendar but now i want to delete it from calendar so create event id & use it to remove event from calendar but its not work from me anyone please help me.. here is code which i use to delete event , please help…

Asmita
- 477
- 8
- 20
1
vote
1 answer
JNA Objective-C (Rococoa) Calendar Callback
I want to access the Objective-C EKEventStore in Java via Rococoa. The API specifies a callback to get notified when the user accepts the calendar access prompt, which works perfectly in pure Objective-C.
Native.loadLibrary("EventKit",…

Timon
- 11
- 3
1
vote
1 answer
Get the status of changed options in default iOS calendar setting from our iOS application through EventKit or any other ways?
Is it possible to get the status of the option that the user are choosing in default iOS calendar from our iOS application programatically ? ,Please share your thoughts.

Super Xtreem
- 187
- 1
- 10
1
vote
1 answer
Adding EKEvent invitees array directly using custom interface
I want to add invitees while scheduling meeting/event in such a way that EKEventEditViewController shows all the invitees pre-populated into it.But apple's documentation shows that invitees array is a read only property and we can not assign value…

user4261430
- 11
- 4
1
vote
1 answer
EKEventStore eventWithIdentifier causes EKCADErrorDomain error 1010
Creating calendar events works fine for me, it's editing already existing event that causes problems. When I try to use eventWithIdentifier for an instance of a EKEventStore object it logs out he error:
Error getting event with identifier…

Oz0234
- 148
- 1
- 16
1
vote
3 answers
Access email in EKParticipant/EKAttendee
I want to get the email address of the attendee of an event in the EKEventKit.
I have the following code:
if ( event.attendees.count > 0)
{
NSArray *people = event.attendees;
for(EKParticipant *person in people)
{
if (…

SchroedingersCat
- 487
- 8
- 21
1
vote
0 answers
Display calendar event details in iOS
I am using below piece of code to fetch calendar events and to log it's details.When i try to log currenttime, startDate and endDate,it is displaying time around 5 hours before. I am not getting what is the reason behind it?
I have set an event at…

user2533604
- 655
- 1
- 11
- 28
1
vote
1 answer
Custom EKSourceType - Event Kit iOS / Read only Calendar
I'm trying to create a calendar that shows up in Apple's calendar (From my application), but I want it to be read only (only editable from my application, not two way sync to Apple's calendar system) -- I'd hoped using EKSourceTypeSubscribed would…

BadPirate
- 25,802
- 10
- 92
- 123
1
vote
0 answers
EventKit event which is for 55 year from current date is not added correctly in iOS 6
I want to add event for 55 year from current date.Using below code for iOS 6,event is added in calendar with event name "New Event" and event was set to all day.This is not correct as per my code.Code is working perfectly for events which are below…

Nitin
- 241
- 2
- 11
1
vote
2 answers
EKEvent Get Current Event iOS7
So I need to get the current event in the calendar. I.E - an event that started and did not end yet. I have written some code but it does not work.
Through debugging I noticed my oneDayAgo variable is nil and I do not understand why.
The…

Michal Shatz
- 1,416
- 2
- 20
- 31
1
vote
2 answers
iOS - Delete Recurring EKEvent, event appears again
I have a recurring event in calendar. I'm delete a single event using this code [store removeEvent:event span:EKSpanThisEvent commit:YES error:&errorThis]; and this methods returns true but the event is not deleted from the calendar.

Afnan
- 888
- 1
- 13
- 37
1
vote
1 answer
Subscribing to calendar from inside app
I want to add functionality to my app to enable users to subscribe to an online calendar.
I have previously done this by opening the url to the calendar which causes iOS to ask the user if he wants to subscribe to this calendar.
This way of doing it…

Simen Øian Gjermundsen
- 864
- 1
- 9
- 23