1
vote
0answers
186 views

how change defaultCalendarForNewEvents objective-c

I want to save the event in my selected calendar but the function setcalendar:calendarWithIdentifier() works only since ios5 and i want to support ios4, therefore I need to change ...
0
votes
2answers
538 views

Properly subclassing the EKEvent Class

I have been having a bit of trouble sublclassing the EKEvent Class. The scenario is this, I am pulling all my events from an external database using a webservice, so all the events come with an ID. ...
0
votes
1answer
1k views

How to set a reminder(alarm) using eventKit framework for a particular date

I am working with EventKit framework in iOS 5 and I successfully added an event to the iOS calendar using the below code EKEventStore *eventDB = [[EKEventStore alloc] init]; EKEvent *myEvent = ...
0
votes
1answer
203 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? ...
0
votes
3answers
3k views

Does the iOS SDK give access to the Calendar picker used by iPhone's built-in Calenar app?

I've dug around a bit in the Eventkit/EventkitUI docs and couldn't find an answer. Does the iOS SDK provide a way to display the Calendar chooser view that the built-in Calendar app uses when you ...
1
vote
0answers
474 views

Pulling a specific event's title and startDate from Event Kit iPhone iOS

I have looked over apple's same code and haven't figured it out. I am trying to pull a single event's title and startDate from Event Kit in iOS 4.0 or later. I have taken Apple's EKDemo sample code ...
1
vote
1answer
864 views

iPhone calendar and time zones (EventKit)

The time zone handling on the iPhone seems a little confusing to me. As far as adding a new EKEvent to the device calendar it looks like you always just set the start/end times in local time, there ...
2
votes
1answer
193 views

OS 4.0 features in backwards compatible app

I have an OS 4 app that was completely compatible with 3.x up until I added eventkit. Is there a way I can omit this feature if they are on a 3.x device? I have #if __IPHONE_OS_VERSION_MAX_ALLOWED ...