Tagged Questions
0
votes
0answers
62 views
Some strange error occurs when manipulating events in the calendar of iOS device
I added some events to the calendar and save their eventIdentifier to file. When i want to remove all my events i read the eventIdentifier from that file to an array and remove each event with its ...
0
votes
0answers
38 views
how to get Reminders on iOS5?
i see we can get calendar(EKCalendar) on iOS5 is EKEventStore.calendars ,iOS6 is [eventStore calendarsForEntityType:EKEntityTypeReminder],and get reminder list or remiders of calendar by create ...
1
vote
1answer
123 views
How can I get EventKitUI to use the device language?
I'm using an EKEventEditViewController to create, edit and delete events from the event store, but it always displays in English. Is there a way to localize it, so it will use the default language of ...
2
votes
1answer
316 views
Check if NSDate is within an EKEventStore
I'm trying to check whether a certain nsdate is within my Event Store. The current month events are stored in a NSMutableArray. I'm using the these functions to create the events store and to fetch ...
0
votes
1answer
204 views
EventKit synchronization questions
In my app I'm using the EventKit API to access calendars on my device, and display them in my views. When working with network calendars, however, I suspect that EKEventStore will only return some ...
1
vote
1answer
659 views
EKEventStore removeEvent EKErrorDomain Code=11 EKErrorObjectBelongsToDifferentStore
I am getting an error:
removing event error: Error Domain=EKErrorDomain Code=11 "That event does not belong to that event store." UserInfo=0x1fdf96b0 {NSLocalizedDescription=That event does not ...
1
vote
3answers
706 views
Two “Calendar” entries listed on iPad - can't write to calendar using EventKit
My iOS app integrates with the device's calendar. On my iPad when I view the calendar app and tap the Calendars button on the top left to choose which calendars to show I see one entry named ...
0
votes
1answer
216 views
EKCalendarChooser new event
Is it possible to show the enable adding new calendars in EKCalendarChooser just like the defalt iPhone Calendar app shows the + in the upper left corner and allows you to define you calendars?
...
2
votes
1answer
292 views
EKCalendarChooser multiple selection does not work
I'm trying to use EKCalendarChooser to get multiple calendars selected by the user. This is how I present the view:
EKCalendarChooser* dvc= [[[EKCalendarChooser alloc] ...
1
vote
0answers
224 views
Set Appearance for tablebiew in EKEventEditViewController using ios5 appearance protocol
OK, I am trying without succes to change the appearance of the tableview presented by the EKEventEditViewController. I think I should be able to do this, but basically nothing is happening.
Case 1 ...
2
votes
0answers
136 views
Check if an event exist using EventKit
I know how to create an event using EventKit framework.
But how to check an event exist or not using EventKit framework? Is it possible?
0
votes
1answer
421 views
Using EventStore, can I create a new iCal calendary type?
So in my app I rely heavily on iCal, and I can add events using EventStore, but only to the "defaultCalendarForNewEvents". I want to make a new calendar just for the events I create in the app, let's ...
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 = ...
3
votes
0answers
253 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 ...
3
votes
3answers
2k 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 ...
3
votes
3answers
2k 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 ...
1
vote
0answers
172 views
EventKit - Event Location, Notes, and organizer properties are empty
I'm trying to fetch some events from the calender using EventKit, and that on ios 5 beta 6.
From some reason, all the fields of the event is empty except the participants, title and dates.
No ...
