Questions tagged [ekevent]

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

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

Available in iOS 4.0 () and later.

285 questions
0
votes
1 answer

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 is that they come from the calendar in the…
Steaphann
  • 2,797
  • 6
  • 50
  • 109
0
votes
1 answer

"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 *reminder = [EKReminder…
EVA
  • 375
  • 1
  • 6
  • 18
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
1 answer

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 will be the 1st of any of the 12 months. This is an…
jhilgert00
  • 5,479
  • 2
  • 38
  • 54
0
votes
1 answer

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 into an array but once the events are in the array,…
Jaun7707
  • 119
  • 2
  • 9
0
votes
1 answer

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 @implementation Calendar -(IBAction)addCal:(id)sender { EKEventStore *store = [[EKEventStore…
Joannes
  • 81
  • 1
  • 11
0
votes
1 answer

EKAlarm absoluteDate is null

for my project I am using the EventKit to access the calendar on an iPhone (iOS 5.1.1) and get all Events from the default calendar. That works fine. For each event I check hasAlarms, if true, I want to know the time of the alarm. So, something like…
Robert
  • 1
  • 1
0
votes
1 answer

iOS setting ekevent start time with local time zone

In my iOS application, I'm showing date picker through which user can select at what time they want to select to store the event in calendar. i am using event kit for this. This is working fine. But the problem is that its creating the even in GMT…
Satyam
  • 15,493
  • 31
  • 131
  • 244
0
votes
0 answers

Check if EKEvent already exists iPhone

I am trying to add an event to the calendar from my app, but it seems that I can add it as many times as I want. I only want to add it once, so how can I check if the event already exists? I have tried to set the eventIdentifier property, but it…
Cosmin
  • 2,840
  • 5
  • 32
  • 50
0
votes
1 answer

How to import an iPhone Calendar event to my app?

I am looking for some tutorials/guidelines for importing iPhone calendar event(s) to my app. Can anyone help? Thanks
Confused
  • 3,846
  • 7
  • 45
  • 72
-1
votes
1 answer

EKEventEditViewController freezes app and loads after long time

I have the following code in swift: var eventController = EKEventEditViewController() eventController.editViewDelegate = self var store = EKEventStore() eventController.eventStore = store var event = EKEvent(eventStore: store) …
stephen
  • 1,617
  • 3
  • 20
  • 27
-1
votes
1 answer

Swift: Error getting all calendars: Error Domain=EKCADErrorDomain Code=1013 "The operation couldn’t be completed. even answered 'Allow'

I have following example where I get: Error getting all calendars: Error Domain=EKCADErrorDomain Code=1013 "The operation couldn’t be completed. (EKCADErrorDomain error 1013.)" This is a place: _estore = EKEventStore() …
snaggs
  • 5,543
  • 17
  • 64
  • 127
-1
votes
1 answer

Launch app from calendar event

I've seen similar question here. But it doesn't work for me. I've added my url scheme with calendar event's url property. It's pretty cool to see scheme url appeared in event's url row. But I couldn't tap on url(url scheme) as like normal url like…
Mani
  • 17,549
  • 13
  • 79
  • 100
-1
votes
2 answers

Memory Management & Performance with EK EventKit

In a calendar app I display events based on the EventKit API. I fetch events from EKEventStore and display them in daily, weekly, monthly views, as lists, etc. Now I am running into some performance problems on iPhone 4. The performance problems…
Mundi
  • 79,884
  • 17
  • 117
  • 140
-4
votes
3 answers

Received Memory Warning in ARC

I am making a call to syncWithCalendar and after events are successfully added, I get low memory warning and app terminates with "Received Low Memory" warning. The events generated and saved in calendar are more than 50. I tried using instruments…
Upendar Gareri
  • 427
  • 1
  • 4
  • 14
1 2 3
18
19