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

How do you change vbulletin's home page to the forums instead of the default (CMS or Activity Stream)? -

c++ - Troubles when compiling phash program -