objective c - Does either klazuka/Kal or EventKit handle multiple calendars? -


i have ipad app needs have multiple calendars, 1 each employee, , 1 giving consolidated view of of employee's calendars.

does either kai or eventkit support requirement? if not, there calendar api will?

event kit this... provided have ekeventstore called myeventstore, define calendar array so:

nsarray *calendararray = myeventstore.calendars; 

and fetch events this

nspredicate *fetchallevents = [self.myeventstore predicateforeventswithstartdate:[nsdate distantpast] enddate:[nsdate distantfuture] calendars:calendararray]; //you can modify predicate, keep calendar:calendararray nsarray *allevents = [self.myeventstore eventsmatchingpredicate:fetchallevents]; 

Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -