Tagged Questions
0
votes
1answer
45 views
Create a calendar in iOS
I have an app which I need to create a calendar to save events that are created by said application. The calendar should be used only inside the app but could have the option to sync to the default ...
0
votes
1answer
50 views
iCal add event error only on fresh installations, and fixed by restart
I have recently released an app and instantly found an annoying bug. There is a button to add events to iCal. When pressed the user is asked to allow the app access to the calendar. If the user clicks ...
0
votes
0answers
31 views
MBProgressHUD object not show when do requestAccessToEntityType for EKEntityTypeEvent
I want to show the MBProgressHUD object - progressHud during process auto add about 100 events to calendar. Here is codes when i touch on the button to do this task.
- ...
0
votes
0answers
73 views
list of EKReminder - IOS5?
we can get calendar(EKCalendar) on iOS5 with EKEventStore.calendars ,
iOS6 : calendarsForEntityType,and get reminder list or remiders of EKCalendar by create predicate: fetchRemindersMatchingPredicate ...
1
vote
1answer
126 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 ...
0
votes
0answers
138 views
Adding alarms to a custom EKCalendar
I need to make a medical calendar application for iOS. So there are some drug reminders, doctor appointments and several other stuff. At first I was thinking UILocalNotifications were good enough. But ...
0
votes
1answer
695 views
Add event to calendar with EventKit Mountain Lion
I added the framework EventKit and I have this code. I can't add an event at default calendar.
#import "Calendar.h"
#import <EventKit/EventKit.h>
@implementation Calendar
...
0
votes
1answer
173 views
EKAlarm absoluteDate is null
for my project I am using the EventKit to access the calendar on an iPhone (iOS 5.1.1) and get all Events from the default calendar. That works fine. For each event I check hasAlarms, if true, I want ...
0
votes
1answer
564 views
iOS setting ekevent start time with local time zone
In my iOS application, I'm showing date picker through which user can select at what time they want to select to store the event in calendar. i am using event kit for this.
This is working fine. But ...
3
votes
2answers
728 views
Add participant to an event in iOS
In the EKParticipant Class reference, " Send attendees to an EKEvent object to get an array of EKParticipant objects. " OK, buy how can I send attendees to an EKEvent object?
Someone give example ...
1
vote
1answer
665 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
0answers
426 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 ...
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 ...
