The eventkit tag has no wiki summary.
5
votes
1answer
2k 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 ...
4
votes
4answers
613 views
EventKit - App freezes when adding an EKEvent with 2 alarms (iOS 5)
I have an app that programmatically adds reminders to your iOS device's calendar.
Previous to iOS 5, I could add a calendar item with two alarms thusly:
EKEventStore* eventStore = [[EKEventStore ...
4
votes
1answer
444 views
Retrieving account information for an EKCalendar
I am using EventKit in my app and would like to find out what account a calendar belongs to.
The iPhone Calendar app shows all calendars grouped by account, with the account name for instance ...
4
votes
3answers
765 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 ...
3
votes
2answers
520 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 ...
3
votes
1answer
344 views
XCode: Why is my event not being added to the calendar?
I have added the following code to my app:
NSDate * selected = [DatePicker date];
NSString * date = [selected description];
NSDateComponents *components = [[NSCalendar currentCalendar] ...
3
votes
2answers
337 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
453 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. ...
3
votes
1answer
911 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 ...
2
votes
1answer
100 views
Can I add/subscribe to a calendar in EventKit?
Is it possible to add or subscribe to a whole new calendar with iPhone's EventKit?
2
votes
2answers
404 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?
2
votes
0answers
102 views
Descriptive name for EKSource in iOS5
I've been trying to get a descriptive title for an EKSource on iOS5 for a while now, but the problem I keep running into is that the title of an external exchange source is always "Exchange", even ...
2
votes
1answer
160 views
How to open a custom app from clicking 'view event' of calender reminder
I have set reminder event in a app using Eventkit framework. I used following link for creating reminder in iCal. And also set alarm for the event. Now when alarm is displayed in alert view, while ...
2
votes
2answers
332 views
How to access an EKCalendar's `account` property
Take a look at the documentation for EKCalendar. It's pretty simple, it has five properties, only one of which is a string called title. Now if you have multiple calendars on your iPhone and you open ...
2
votes
1answer
200 views
Is the starting day of the week stored in NSLocale somewhere?
I live in the Netherlands. We Dutch people like to see Monday as the start of the week. I know that people in the US like to consider Sunday as the start of the week. Silly Americans ;)
If I want to ...
2
votes
3answers
647 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 ...
2
votes
1answer
426 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 ...
2
votes
1answer
299 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
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: ...
2
votes
0answers
619 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 ...
2
votes
1answer
162 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
vote
0answers
36 views
iPhone EventKit Adding Event Custom Parameter
I am letting the user add events to the calendar in my app.
My question is, can I add a custom field to the view when the user goes to add an event, an example, a 'Birthday' field with a switch or ...
1
vote
0answers
52 views
iPhone Event Kit - Event Custom Field
I am looking to integrate Kalzuka Kal, an open course iPhone calendar into my app. It will show all the events from the official calendar app and the user will be able to add events using Event Kit.
...
1
vote
2answers
71 views
Property 'delegate' not found on object 'AddEventViewController'
With the help of the Developer Library, I am trying to work with the EventKit and EventKitUI Frameworks. I've hit a very early roadblock. I have copied and pasted code from the library found here. I ...
1
vote
0answers
134 views
Event Kit for changing own calendar?
Is it possible to use EK to create events for a custom made calendar? The EK is linked to the database of the default iOS calendar and I wonder if it is possible to change that.
The framework ...
1
vote
1answer
86 views
How to get CoreData fetch results into (multidimensional) arrays?
I want to get data from multiple rows in coredata into a multidimensional array so I can loop through them to create events in a calendar. However, it doesn't seem possible or advisable from an ...
1
vote
0answers
133 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 ...
1
vote
2answers
155 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 = ...
1
vote
2answers
413 views
EKEvent eventIdentifier returns null
When I try to get the identifier of an EKEvent, all I get is a nil value. Since in iOS5 EKEvent is a subclass of EKCalendarItem, I figured I might be able to get the EKCalendarItem's UUID, but that ...
1
vote
1answer
239 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 ...
1
vote
1answer
83 views
iPhone - Is there any way to cancel a request to the EventKit database?
I am trying to figure out if it is possible to cancel a query to the EventKit database. I query the EventKit with a predicate that matches all events in a certain week. This query can take some time ...
1
vote
1answer
272 views
[iOS]How to get the Calendar Event, one Recurrence as one event?
I get calendar event as the following code:
NSDate *startDate1 = [NSDate date];
NSDate *endDate1 = [NSDate distantFuture];
NSPredicate *predicate = [eventStore ...
1
vote
1answer
179 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
0answers
265 views
How to create application which displays calendar events in timeline view for daily and weekly bases?
Is there any code or library available to develop such an application which displays calendar events in week view or daily view or yearly view according to requirement?
Requirement is the code should ...
1
vote
2answers
419 views
PhoneGap + Event Kit Framework?
I've looked through PhoneGap forums and documentation, and I'm not seeing any information on this. I'm just getting started with mobile development using Sencha Touch and PhoneGap, and wondering how ...
1
vote
1answer
141 views
calendar application on iphone
NSPredicate *eventsForThisYear = [NSPredicate eventPredicateWithStartDate:startDate endDate:endDate calendars:[[CalCalendarStore defaultCalendarStore] calendars]];
NSArray *events = [eventDB ...
1
vote
1answer
1k views
Manage iPhone Calendar event from our application
The following is my code
NSLog(@"%@", thisEvent1.title);
EKEvent *thisEvent = [EKEvent eventWithEventStore:eventStore];
eventStore = [[EKEventStore alloc] init];
thisEvent = [EKEvent ...
1
vote
1answer
400 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 ...
1
vote
2answers
430 views
How can I retrieve all events from an iPhone calendar?
I want to know how to read all events in an iPhone calendar in a programmatic way?
I know the way by which we can retrieve events of known days. The following code retrieves the events for the ...
1
vote
1answer
317 views
Retaining Events from the user's calendar
I'm working on an App that needs to remember events selected by the user from their calendar and I've run into a problem with recurring events.
For non-recurring events I can just store the ...
1
vote
1answer
179 views
what is the purpose/usage for the EventKit EKEvent “organizer” property?
what is the purpose/usage for the EventKit EKEvent "organizer" property?
The doco says "The organizer associated with the event" however I'm not sure what this means.
1
vote
1answer
234 views
create a VCALENDAR parser for iPhone
I am creating an calendar based application in that I want to send all the details to server in the VCALENDAR formate to the server and in the same way need to read it.
I know the event kit ...
1
vote
1answer
401 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 ...
1
vote
0answers
403 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 ...
1
vote
0answers
318 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
2answers
462 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 ...
1
vote
1answer
650 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 ...
1
vote
3answers
517 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
457 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.
...
1
vote
1answer
505 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 ...