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 = ...
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 ...
1
vote
1answer
1k 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 ...