I have an app that creates a calendar event programmatically it is working and I just made it so it retrieves the users calendars and displays them in a picker but I have a memory leak. Can you see it becasue I tried releasing everything... In addition my main issue is how do I have it save to that calendar that the user selects, [event setCalendar:calendararray]; doesn't work. The calendararray is a EKCalendar *calendararray and I am setting the user selected calendar to it. Why does this not work???? How do I make it work...
calendar .m
#import "calendar.h"
@implementation calendar
@synthesize delegate;
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
[super viewDidLoad];
EKEventStore *eventStore = [[EKEventStore alloc] init];
/* These are the calendar types an iOS Device can have. Please note
that the "type" property of an object of type EKCalendar
is of type EKCalendarType. The values in the "CalendarTypes"
array reflect the exact same values in the EKCalendarType
enumeration, but as NSString values */
NSArray *calendarTypes = [NSArray arrayWithObjects:
@"Local",
@"CalDAV",
@"Exchange",
@"Subscription",
@"Birthday",
nil];
/* Go through the calendars one by one */
NSUInteger counter = 1;
for (EKCalendar *thisCalendar in eventStore.calendars){
/* The title of the calendar */
NSLog(@"Calendar %lu Title = %@",
(unsigned long)counter, thisCalendar.title);