Tagged Questions
3
votes
2answers
102 views
Reminders.app two-way synchronisation logic
I want my app to synchronise with the Reminders.app. (my app utilizes Core Data)
I've already done a prototype and it works, but there are some bugs I can't think through.
Right now my sync ...
2
votes
1answer
137 views
iOS How to add many events to calendar by one loop
I know that code below is very useful for create and add an event to iOS calendar. It work great and i can add many events, but with one event i have to make one touch on the button.
- ...
1
vote
2answers
118 views
Instance variable is nil when accessed from block
I'm using the EventKit API to fetch a user's Reminders. The fetch API is done asynchrounously and when the fetch is finished there is a completion block you can use. However after I have fetched the ...
1
vote
1answer
107 views
How to set reminder one year ahead using EventKit Framework
Im trying to set the start date 1 year in advance when adding an event using Eventkit Framework.
so far I have looked on SO, done a google search and tried
controller.event.startDate = [[[NSDate ...
0
votes
1answer
51 views
Event Title Not Showing Using EK Events, EventKit
A the title suggests when presenting the view for an event using EventKit my title string does not show in the presented view, its just blank
EKEventStore *es = [[EKEventStore alloc] init];
...
5
votes
1answer
162 views
Bullied by the EventKit framework on iOS 6
At first I though I had left my self this message, but then I started seeing more comments like this one. I just want to ask if Im the only one seeing messages like this ? I think its funny in some ...
1
vote
1answer
358 views
iOS – Event Kit programming listen to notifications
I want to observe changes to the Calendar application so I register for the EKEventStoreChangedNotification notification. But do I need to have an EKEventStore object "alive" for me to receive this ...
0
votes
0answers
59 views
How to create calendar programaticaly and add event in it programtically
I want to make a calendar app. In this I have to add an event for a particular date...
I have created calendar through button with grid view. Now Is it possible to add event in calendar which made by ...
21
votes
0answers
258 views
Google Delegates on Calendar Framework / EventKit
I have always run with the assumption that Google delegates can be viewed by iCal and the calendar.app, but are not visible to us developers through the calendar framework, or EventKit.
Has this ...
0
votes
2answers
805 views
URL Scheme for opening the iCal app at a date or event?
The Apple URL Scheme Reference gives a nice overview of a number of URL schemes you can use to open certain built-in apps with some parameters.
I know that this is not a complete list of all possible ...
4
votes
1answer
1k views
How to decide whether the default EKCalendar 'Calendar' can be hidden?
I'm writing an app that deals with calendars. In the app I'm displaying a list of all available calendars for the user to enable or disable. I'm not using the EventKitUI framework for purposes of my ...
1
vote
1answer
2k views
Edit and Delete Existing EKEvent?
I am using the Kal calendar in my app, (hopefully that doesn't change too much) but I get an EKEvent object from that depending on the user selection on the calendar.
Anyway, how can I edit and ...
0
votes
1answer
116 views
Application notified when an EventKit event fires
Is it possible for my app to be notified when an event from a given calendar fires? I tried looking in EventKit for some delegate property, to no avail.
I want my app to run a certain code when a ...
0
votes
2answers
473 views
EKEvent identifier changes when selecting another calendar
I have a meeting planner app that has its own sqlite database and attaches it self to an EKEvent from the calendar framework. I'm using the event identifier as a foreign key for my meeting data. The ...
1
vote
0answers
427 views
-[CFString hash]: message sent to deallocated instance
I'm trying to fetch EKEvents from the Event Store to populate a UITableView and display a month list view.
Basically it works and I'm doing it like this:
- (void) reloadEvents
{
for ( NSString ...
2
votes
2answers
2k views
Add a new calendar to an EKEventStore with EventKit
How can I add a Calendar (not an event) to a EKEventStore in iOS 5?
1
vote
2answers
431 views
How to create a Calendar of a specific type?
How can I create a calendar of a specific type? All calendars created with + calendarWithEventStore: are created with type Local:
EKEventStore *store = [[EKEventStore alloc] init];
EKCalendar *cal = ...
3
votes
3answers
2k views
EKAlarm will not set in iOS 5
I wrote the following snippet to create an event. Setting the alarm works fine in iOS 4, but in iOS 5 it doesn't get set.
Is this a bug or am I missing something?
EKCalendar *cal = [self.eventStore ...
1
vote
1answer
1k views
How to programmatically add calendar subscriptions on iOS?
Via the settings panel of your iPhone, you can add a subscription to a remote .ics calendar format. I have a Dutch iPhone app that does this from within the app (see the screenshot below, "abonneren ...
0
votes
2answers
1k views
Create event based on dates in a text field
How can I create an event with the iPhone's calendar, getting the start and end dates from a UITextField?
0
votes
1answer
200 views
EventKit problems with custom timezone
EKEventEditViewController's datepicker displays incorrect time (with incorrect offset) if I set custom timezone for the app:
[NSTimeZone setDefaultTimeZone:someOtherTimezone]
Is this EventKit bug?
...
1
vote
1answer
412 views
EKEventEditViewController timezone problem
I have a strange problem with EKEventEditViewController when using it with custom timezones. It behaves differently in two situations:
Situation 1 - works fine:
Launch app
Create ...
1
vote
1answer
392 views
calendar application on iphone
NSPredicate *eventsForThisYear = [NSPredicate eventPredicateWithStartDate:startDate endDate:endDate calendars:[[CalCalendarStore defaultCalendarStore] calendars]];
NSArray *events = [eventDB ...
0
votes
1answer
1k views
How to get event properties
I have the following method, for getting all events in the current day:
- (NSArray *)fetchEventsForToday {
NSDate *startDate = [NSDate date];
// endDate is 1 day = 60*60*24 seconds = 86400 ...
2
votes
1answer
1k views
NSTimezone problem using EventKit
I need to make entries in the iPhone calendar, using EventKit framework.
Since my app should be international, I need to take care of differnt timezones.
What I am doing right now:
An event should ...
4
votes
3answers
2k views
How to customize UITableView of EKEventViewController?
Is there any way to change the background color/image of the details UITableView in the EKEventViewController? I'm able to change the main UITableView but not the detail UITableView due to have no ...
0
votes
1answer
584 views
Unable to save event on iPhone's eventkit
I keep getting an error when I try to set my startDate and endDate. What am I doing wrong here? Here's my code:
EKEventStore *eventStore = [[EKEventStore alloc] init];
EKEvent *newEvent = [EKEvent ...
1
vote
1answer
841 views
iOS: Event Kit with custom event source (from web/ICS)?
I am looking into using event kit to display calendar events to our users, but I am trying to find a way to source the events from our website, since we already have thousands of events in our system.
...
0
votes
1answer
946 views
a question regarding iPhone Calendar (Kal)
I was wondering if Kal supports adding events? Like if I wish to support scheduling events within my app, does Kal support adding/editing events and showing it on the month view it has?
Or is it just ...