Is there any way to add iCal event to the iPhone Calendar from the custom App?

link|improve this question

feedback

5 Answers

up vote 90 down vote accepted

You can do this using the Event Kit framework in OS 4.0.

Right click on the FrameWorks group in the Groups and Files Navigator on the left of the window. Select 'Add' then 'Existing FrameWorks' then 'EventKit.Framework'.

Then you should be able to add events with code like this:

//
//  EventTestViewController.m
//  EventTest
//
//  Created by Some Person on 5/07/10.
//  Copyright __MyCompanyName__ 2010. All rights reserved.
//

#import "EventTestViewController.h"
#import <EventKit/EventKit.h>

@implementation EventTestViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    EKEventStore *eventStore = [[EKEventStore alloc] init];

    EKEvent *event  = [EKEvent eventWithEventStore:eventStore];
    event.title     = @"EVENT TITLE";

    event.startDate = [[NSDate alloc] init];
    event.endDate   = [[NSDate alloc] initWithTimeInterval:600 sinceDate:event.startDate];

    [event setCalendar:[eventStore defaultCalendarForNewEvents]];
    NSError *err;
    [eventStore saveEvent:event span:EKSpanThisEvent error:&err];       
}



- (void)didReceiveMemoryWarning {
    // Releases the view if it doesn't have a superview.
    [super didReceiveMemoryWarning];

    // Release any cached data, images, etc that aren't in use.
}

- (void)viewDidUnload {
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
}


- (void)dealloc {
    [super dealloc];
}

@end
link|improve this answer
1  
Finally. Thank you all :) – Stream Jul 6 '10 at 17:10
12  
Thanks for posting this. Just a reminder to all who read this: take care to watch for memory leaks. There are a couple in this code sample. Also, best practices would dictate that you check the value of 'err' after saveEvent:span:error and handle things accordingly. – D Carney Jul 6 '10 at 21:37
Do you know how to add recurrence event? like an event for every monday? – Jay Vachhani Sep 9 '10 at 7:45
2  
Add recurrence event programmatically: check this out developer.apple.com/library/ios/#documentation/EventKit/…;. Another option is to use the default framework-supplied view controllers for adding/editing events (like the Calendar At-A-Glance app bit.ly/cJq4Bh). For this option, see developer.apple.com/library/ios/#documentation/EventKitUI/… – DenTheMan Dec 6 '10 at 10:12
To add frameworks in XCode 4 see this SO question: stackoverflow.com/questions/3352664/… – Nate Mar 19 '11 at 1:45
feedback

Yes there still is no API for this (2.1). But it seemed like at WWDC a lot of people were already interested in the functionality (including myself) and the recommendation was to go to the below site and create a feature request for this. If there is enough of an interest, they might end up moving the ICal.framework to the public SDK.

https://developer.apple.com/bugreporter/

link|improve this answer
feedback

Calendar access is being added in iPhone OS 4.0:

Calendar Access
Apps can now create and edit events directly in the Calendar app with Event Kit.
Create recurring events, set up start and end times and assign them to any calendar on the device.

link|improve this answer
feedback

Currenctly there is no API for manipulating calendars from your own application on the phone. There is an API for the address book.

Anyone know if this is going to be addressed?

link|improve this answer
developer.apple.com/bugreporter is the best answer ) – Stream Jan 25 '09 at 19:02
feedback

The Google idea is a nice one, but has problems.

I can successfully open a Google calendar event screen - but only on the main desktop version, and it doesn't display properly on iPhone Safari. The Google mobile calendar, which does display properly on Safari, doesn't seem to work with the API to add events.

For the moment, I can't see a good way out of this one.

link|improve this answer
feedback

protected by Will Jan 19 '11 at 15:27

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.