Tagged Questions
0
votes
0answers
37 views
EKCalendar is not selected in Calendar app
I'm working on an app that needs to be in sync with the device calendar, usually I sync about 30-50 events.
From time to time, I need to refresh that list so I delete the old calendar and I create a ...
0
votes
0answers
29 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.
- ...
1
vote
0answers
44 views
What exactly constitutes a “full calendar sync” in EKCalendar?
The documentation for the EKCalendar class states this for the calendarIdentifier property:
A full sync with the calendar will lose this identifier. You should
have a plan for dealing with a ...
0
votes
1answer
39 views
Saving an EKCalendar
Once you create an EKCalendar, it's often said that you should hold onto the calendarIdentifier to retrieve that calendar later. However, the documentation notes that the identifier will change ...
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 ...
1
vote
0answers
85 views
Adding an EKAlarm to EKReminder with a recurrence rule
I have a quick question for someone familiar with Event Kit...
I'm creating recurring reminders and I'd like an alarm to sound at each recurrence. However, the documentation suggests I can only ...
0
votes
0answers
66 views
Receive calendar event notifications
Are there any notification events sent or that can be trapped via the NSNotficationCenter for calendar events? For instance, when there's a meeting with a reminder set, that my app can be notified ...
0
votes
1answer
120 views
Accessing calendars in Mac Objective-C program
This bit of code is intended to print my default calendar in iCal on my Mac but instead returns (null). Do I need to change something in the code or settings to be able to access my calendars? I'm ...
0
votes
0answers
52 views
NSTableView Sorting Events by Day of Week
I've been working with EventKit on OSX and have yet to quite figure this out. Using an NSTableView & NSTableCellViews, the goal is to use an array of EKEvents, through an ArrayController, to ...
-1
votes
1answer
47 views
Tying EventKit to Interface on OSX [closed]
I've been trying to learn how to use the EventKit for a MacOSX app and most of the programmatic procedures seem simple enough. But I keep searching and searching for how to tie the calendars/events to ...
0
votes
1answer
81 views
Notified with changes of Calendar events
I want to get notified when my application is in background with :
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(calendarChanged:) name:EKEventStoreChangedNotification ...
1
vote
1answer
70 views
Extending EventKit functionality
This is my first post to SO, so I'll get right to it.
I'm working on a calendar application and I'm trying to figure out how to add new functionality to EKEvents. I've done enough research to know ...
1
vote
1answer
152 views
EventKit without using Calendar or Reminders App
I am curious if there is a way to use the capabilities of EventKit - creating events, recurrence rules, etc. - without actually having to interface with the Calendar and Reminders apps?
A little more ...
0
votes
0answers
88 views
Calendar Events and recurrence
I know that EKRecurrenceRule creates rule and assigned it to specific event,
EKRecurrenceFrequency freq = EKRecurrenceFrequencyDaily;
int recurrenceInterval = 1;
EKRecurrenceRule *rule = ...
1
vote
0answers
88 views
is it possible to change the default alarm timings in icalendar using eventkit?
I used the following code to display a calendar using EVENTKIT
- (BOOL)createEvent:(NSString *)title
at:(NSString *)location
starting:(NSDate *)startDate
...
0
votes
1answer
794 views
Add event to calendar xcode?
I have a basic app with a list view with manualy added cells.
How would i make it so that when a cell is clicked , a specific date is added to the iphone calendar?
Info - using latest xcode with ...
1
vote
2answers
147 views
NSString parse to find date
I am pulling information from a database that contains dates formatted weird.
When they are pulled they are in the format of:
DayOfWeek, Month Date
I am attempting to use EventKit to have the ...
0
votes
1answer
466 views
how to programmatically select the date/time and title for Event Kit calendar
Below is my code. currently on a button click it opens up the calendar so the user can add events. How do I pass or preselect a date and title for the user when the event calendar opens up?
Heres my ...
1
vote
2answers
1k 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 ...
4
votes
1answer
1k 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] ...
0
votes
1answer
585 views
Tapku Calendar Events [closed]
Iam newbie with this calendar sort of thing...Please suggest me if possible.
Iam using Tapku calendar.And i want to add events that will sync with tapku calendar.
Is that possible..
Thanks in ...
3
votes
1answer
4k 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
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 ...