Questions tagged [ekeventkit]
166 questions
0
votes
2 answers
iOS Location based reminder
i am making an application which has a feature that allows users to create location based notifications to turn the application on/off when they arrive/leave a certain location.
Reminders are created (as indicated by the first picture), but are not…

rcresnik
- 120
- 9
0
votes
1 answer
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 particular field from the object.
I tried converting…

Abhishek Shah
- 11
- 1
- 3
0
votes
1 answer
How to read Exchange calendar properties in an iOS app?
I am building an iOS app which adds EKEvent items to a calendar which is synced with an Exchange server. This Exchange server adds custom properties to the event items.
Is there any possibility to read the custom properties of the Exchange items in…

Maximilian Fischer
- 33
- 4
0
votes
1 answer
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 me how retrieve those events using ekevnt store.

CKT
- 1,223
- 4
- 21
- 39
0
votes
1 answer
Get events from all the EKCalendar
I want to get events from all the calendars (home,work,calendar and birthday). I am getting events from the defaultcalendar, but cannot fetch events from Birthday calendar. Any help will be great.

rajvi
- 3
- 4
0
votes
2 answers
EKEditviewController keeps showing the title in the navigationbar
I'm working with the EventKit Framework. It is working almost perfect but I have still some issues. When I push my on an Event, it goes to the details of that Event. It shows correctly the details and I can also edit and save it. The problem is with…

Steaphann
- 2,797
- 6
- 50
- 109
0
votes
1 answer
How do I set an EKEvent to recur variable days prior to a specific date?
Background Info
I have a class that contains an NSDate object that is used as the date of an EKEvent. The EKEvent is added to the Calendar, sometimes with an EKRecurrenceRule set, with a date that is x amount of days prior to the actual date of the…

sud0
- 537
- 4
- 18
0
votes
1 answer
Getting the list of Facebook calendars on iOS 6
When iterating through the list of native iOS EKCalendars is there any way to tell that a specific calendar is a from Facebook? The one you see in the "Facebook" section in native iOS calendar app.
I see those calendars with…

Misha Karpenko
- 2,168
- 17
- 18
0
votes
0 answers
Get events from a specific calendar in IOS
I am trying to fetch events from a specific calendar only. On my iPhone I added a calendar "CalendarTest". What I want to do is in my app only fetch the events from that Calendar. I am doing the following.
self.defaultCalendar = [eventStore…

Steaphann
- 2,797
- 6
- 50
- 109
0
votes
1 answer
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.
Thanks

Dheeraj Kaveti
- 309
- 1
- 2
- 9
0
votes
2 answers
EKCalendarChooser goes into 'Edit Calendar' mode, NOT choose mode. Any tips?
Using EKCalendarChooser in 'EKCalendarChooserSelectionStyleSingle' mode, I get it to come up, but it always comes up with "Edit Calendar" mode. This doesn't give me the ability to choose one, only to edit/rename/delete calendars.
Any tips on what…

RunningPink
- 218
- 3
- 7
0
votes
2 answers
EKEvent is not saving reminder in calendar ios
I am trying to save reminder in calendar. Its been saved but with wrong date and time.
EDIT Basically i want to save reminder in calendar with start date selected from startDate picker and end date selected from endDate picker. and time selected…

Mann
- 5,477
- 6
- 45
- 57
0
votes
1 answer
App fails to be built when Titanium Appcelerator Module with EventKit is integrated
I am working on titanium app with Calendar module I created before almost 6 months ago. When I had created the module for Calendar, I was using Snow Leopard. But recently I have upgraded my machine for Lion and now, when I tried to modify the…

Paresh Thakor
- 1,795
- 2
- 27
- 47
0
votes
2 answers
Is EKCalendarItem's UUID truly unique?
The class EKEvent in iOS 4 has a property called eventIdentifier, which is not "truly" unique (it mostly when local calendar syncs with remote calendar).
In iOS 5 sdk, EKCalendarItem has a property called UUID which according to the documentation is…

Herman
- 3,004
- 5
- 37
- 49
-1
votes
1 answer
How to fetch the events from local calendar in iOS swift
func fetchEvent()
{
var store = EKEventStore()
let calendars = store.calendars(for: .event)
for calendar in calendars {
let oneMonthAgo = Date()
let oneMonthAfter =…

Murali Karthick
- 19
- 2