Questions tagged [ekeventkit]
166 questions
0
votes
1 answer
Delete Rows (All-day,Repeat and URL) Permanetally From EKEventEditViewController
I Create an Event on Calendar, so i used the code that was provided by Apple sample code and i use EkEventViewController, all do work fine.
but i want to customise EKEventViewController, and Delete these Rows -All-day,Repeat and URL when we create…

RAMA
- 59
- 11
0
votes
0 answers
How to open Reminder Event Default screen using our app
I am creating a app where i can set the reminder based on Location and date.Apple has already given the UI if you are using Reminder which has both option.Can any one help me out that how can i open that Create event screen.

amit soni
- 2,183
- 1
- 14
- 17
0
votes
1 answer
Travel Time from EKEvent
How can we get Travel Time from iPhone Calendar event.
I mean Travel Time which we will enter at the time of event creation.
I will get All event details using "EKEventStore".

kb920
- 3,039
- 2
- 33
- 44
0
votes
1 answer
calling self.tableView.reloadData takes 10-15 seconds
I am trying to load data into a Table View with Swift. My problem is that the displaying of the data takes a good 10-15 seconds. The data does end up getting displayed, but it just takes to long of a time. I am retrieving events from iCal and then…

PoKoBros
- 701
- 3
- 9
- 25
0
votes
1 answer
predicateForEventsWithStartDate returns nil
predicateForEventsWithStartDate returns nil when the startDate and endDate are same even when there is an event for the dates I am providing, but the same function seems to work if the start and end date are different.
var predicate:NSPredicate…

sahiljain
- 2,215
- 1
- 29
- 39
0
votes
1 answer
Request to access calendar hangs on splash screen
In my app, I am reading the calendar as soon as the app launches. So for the first time as per the guidelines my app asks for calendar access but what's happening is it never shows up and all i can see is the splash screen.
When i close the app i…

Ashutosh
- 5,614
- 13
- 52
- 84
0
votes
1 answer
If I subclass from EKReminder will I be able to save my custom class to the eventstore on iCloud
I would like to develop a custom Reminders application. The properties and methods the EKReminder has by default are not enough. If I subclass it and then add all the extra properties and stuff I need will I be able to save it to the iCloud…

unom
- 11,438
- 4
- 34
- 54
0
votes
2 answers
iOS EventKit - Event is not being deleted from calendar
I'm deleting event using the following code
[store requestAccessToEntityType:EKEntityTypeEvent completion: ^(BOOL granted, NSError *error) {
if (granted) {
EKEvent *event = [store eventWithIdentifier:eventIdentifier];
NSError…

Afnan
- 888
- 1
- 13
- 37
0
votes
1 answer
Revoke a requestAccessToEntityType: authorization on Mavericks so I can test my app
I'm developing a CLI app that requests access to Reminders app on OSX Mavericks. Everything works fine with requesting permission, and detecting if the user has disabled the permission. The problem I have is that I cannot completely revoke the…

Ramiro Araujo
- 465
- 3
- 11
0
votes
1 answer
Can't retrieve EKCalendars from EKEventStore in iOS7
I've recently found out, that I do not receive any EKCalendar objects from EKEventStore in iOS7. In iOS 6.x.x there are no problems with same code snippet. When I'm trying to access defaultCalendarForNewEvents - I do receive a single EKCalendar…

Robert
- 11
- 1
- 4
0
votes
1 answer
how to set event duration in ekevent in icalender?
I created event in iCalendar. Its start date is today and end date is next month 15th. and this is recurrence type of event . so if set event as recurrence event then changed end date as same as recurrence end date. I want to give time duration of…

banu
- 787
- 9
- 24
0
votes
1 answer
EKEvent is not added according to EKRecurrenceRule
I'm trying to create a repeatitive event on calendar. I've created an EKRecurrenceRule and set it to that event. But the event is not created according to my recurrence rule.
Here is my code,
//just creating a recurrence rule for…

user2705947
- 1
- 1
0
votes
1 answer
EKEventEditViewController default navigation bar title is not showing
I have this weird issue regarding the EKEventEditViewController which does not display the "Add Event" title in the navigation bar. I use the following code to present it:
[eventStore requestAccessToEntityType:EKEntityTypeEvent completion:^(BOOL…

Gerhat
- 823
- 1
- 10
- 14
0
votes
2 answers
EKAlarm Retrieving in iPhone sdk
Now i am working on calendar application that uses EKAlarm.I successfully save alarm time to EKEvent.When I retrieve alarm array i got like this in console
("EKAlarm <0x10d110b0> {triggerInterval = -86400.000000}")
.I want to get 86400 from this…

IKKA
- 6,297
- 7
- 50
- 88
0
votes
0 answers
How to make a custom calendar in iOS and add it to default app? Can't directly init a calendar. Use calendarWithEventStore
I was using the calendar code from Apple Sample Code.
I want to make my calendar in the app to add events.
But I am not getting the how to make the own calendar and add it to the default calendar app of iOS.
I am getting this error.
"Terminating…

HDdeveloper
- 4,396
- 6
- 40
- 65