Event Kit is a framework in iOS which provides classes for accessing and modifying calendar event information.

learn more… | top users | synonyms

0
votes
1answer
375 views

Does EventKit eventsMatchingPredicate search pickup individual instances from a recurrent event?

Does EventKit eventsMatchingPredicate search pickup individual instances from a recurrent event?
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 ...
1
vote
1answer
1k views

Add an event into iCal in iPhone application

I want to be able to add the date and notes of a doctor's appointment into the calendar in an iPhone app. The thing is, I do have strings date and notes of the appointment with the Doctor. I have to ...
0
votes
1answer
595 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 ...
0
votes
2answers
639 views

Kal showing 2 cells for the same event

I have created an iphone application which utilises the Kal framework within a tab bar environment. i create a new event using the EVENTKIT framework and it shows up to the user like this: after ...
1
vote
0answers
578 views

in iphone,donot play sound in alarm made by ekevent?

check it..... - (void)viewDidLoad { [super viewDidLoad]; self.eventStore = [[EKEventStore alloc] init]; self.eventsList = [[NSMutableArray alloc] initWithArray:0]; // Get the ...
0
votes
1answer
835 views

Clear iPhone Navigation Bar Image

I am currently using this code in my App Delegate to set a custom background image for the Navigation bar: @implementation UINavigationBar (CustomImage) - (void)drawRect:(CGRect)rect { ...
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 ...
3
votes
2answers
514 views

Snooze method in EventKit Framework?

I am able to access all functionality of EKEventStore like save any event or remove any event from Calendar. But how can create snooze for that event lets say 15 min snooze i needed for all saveEvent ...
3
votes
1answer
1k views

Getting “Undefined symbols” when trying to use EventKit?

I am trying to use EventKit based around the doco & SimpleEKDemo application, however I am getting the following single error. What does this error mean and what steps would be recommended for ...
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 ...
9
votes
1answer
6k views

iPhone simulator - how to detect when app is running on simulator (so can setup test data)?

Any sample code that would show me how to, in my iPhone application code: How to detect if the application has just been DEPLOYED to be run to a simulator (and not a device) [if "Deployed" isn't ...
3
votes
1answer
712 views

iPhone 'Event Kit' - how can I specify additional search filters for a fetch (beyond start/end date)?

re iPhone 'Event Kit': How can I specify additional search filters (per doco here) for a fetching calendar items, beyond the limited options of just start & end date mentioned in the doco? (e.g. ...
0
votes
0answers
219 views

Adding properties to EventKit

I have the following code: - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { EKEventEditViewController *addController = [[EKEventEditViewController ...
1
vote
2answers
996 views

Is there any way to add identifier or tag custom event added in iCal?

I am setting a reminder in my app. I have added a custom event using EKEvent to iCal. Now when I retrieve events from iCal I get all the events present on that day. Is there any way to get/retrieve ...
2
votes
1answer
1k views

iPhone: how to interact programmatically with the native Calendar application

Is there any way to interact with the native Calendar application without using EventKit or EventKitUI? EventKit/EventKitUI lets you add/edit/delete etc. events in your native calendar, but I'm ...
2
votes
1answer
599 views

Monotouch EKEvent Notes not being saved

What am I doing wrong here? currentEvent.Title prints correctly. currentEvent.Notes is always blank.. public void CalendarEvents() { EKEventStore store = new EKEventStore(); EKCalendar calendar ...
2
votes
3answers
1k views

EKEventViewDelegate didCompleteWithAction not getting called

I don't get a call to my eventViewController:didCompleteWithAction: when the EKEventViewController finishes edting an event. Here's how I set it up: - (void)showCalendar:(id)sender { ...
1
vote
1answer
854 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
2answers
505 views

detecting and preventing crashed on older iOS (Suspecting EventKit)

Dear Scholars. I have created a simple application using the latest SDK (4.2.1), Which runs smoothly and error free on all devices with iOS 4.x.x. Lately I am getting some comments from users with ...
6
votes
3answers
2k views

How can my app get a list of calendars on user's iPhone

I'm writing an iPhone app that will use the EventKit framework to create new events in the user's Calendar. That part works pretty well (except for the wonky way it handles the timezone -- but that's ...
0
votes
1answer
953 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 ...
1
vote
1answer
1k views

SimpleEKDemo Example with allowsEditing = YES but show only “Done” button in iPad

The SimpleEKDemo example is delivered with "Targeted Device Family = iPhone" in the Build tag of Project Settings. It works for both iPhone and iPad, the "Edit" barButton showed in the ...
0
votes
2answers
424 views

date problem while adding Event to iPhone calendar

while adding an event to the calendar of an iphone, the date is going to be reseted to 1.1.2001 and i have no idea why. id arg1 = [args objectAtIndex:0]; // start id arg2 = [args objectAtIndex:1]; ...
2
votes
4answers
1k views

iPhone: How to detect if an EKEvent instance can be modified?

While working with the EventKit on iPhone I noticed that some events can exist which cannot be modified. Examples I encountered so far are birthdays and events synced with CalDAV. When you view the ...
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 ...
4
votes
1answer
2k views

Store a custom value in a EKEvent (iPhone Calendar)

My app integrates with the device calendar. When a new item is added to my app we create a calendar entry for this item. If the item is edited we need to update the calendar item. What I do now is ...
1
vote
2answers
1k views

How to use EventKit (Calendar) integration and still support iOS 3.x (MonoTouch)?

I would like to use EventKit to integrate the Calendar in my iPhone and iPad apps. However, when I include this code such as using MonoTouch.EventKit the app will not run on my OS 3.x device (iPod ...
0
votes
1answer
307 views

Rely on ABAddressBook & EKEventKit or roll my own?

I'm about to embark on an app that will require scheduling of events for "clients" among other things. I've worked with ABAddressBook a bit on a previous project (year ago) so knew then its advantages ...
0
votes
1answer
867 views

Can I use the Ekcalendar in my native iphone apps

I plan to create a meeting/event iphone application. Can I use the Ekcalendar inside my apps(not the default calendar apps on the iphone)? When I click the meeting detail, it will have my own define ...
0
votes
3answers
2k views

How to delete calendar events faster?

Following code works and deletes all calendar events from iPhone calendar database. But events are deleting very slow: 2 events per second on iPhone 3GS. So if you have 3000 events - then it's 25 ...
2
votes
4answers
1k views

EventKit in Universal app (OS3.2)

I made iPhone app with eventkit framework. However, i upgrade to universal app, app can't run in ipad. I got error message dyld: Library not loaded: ...
1
vote
0answers
1k views

How to delete all events from calendar?

Is there a method to receive all entries from calendar at once, without specifying predicate, which can only create 5 years intervals? I know about "5 years" from console output. I specified ...
11
votes
1answer
1k views

Adding EKParticipants to an EKEvent in EventKit

I'd like to programatically add a participant to an EKEvent on the iPhone. EKParticipant's class reference states "You do not create EKParticipant objects directly. Send attendees to an EKEvent ...
0
votes
1answer
440 views

Adding Event Kit.Framework results in 1000+ Errors When Deployed to Device!

I need to add a calendar event to the user's Calendar when they click a button. This works in the simulator, but when I attempt to deploy to my 3GS running iOS 4.01, XCODE throws 1000+ errors! Any ...
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 ...

1 2 3 4 5