卡尔日历改变标记事件颜色

时间:2012-09-05 08:02:06

标签: iphone objective-c ios xcode

我使用Klazuka / Kal控制器选择日期。当我从两个不同的数组添加事件时。所以

基本上我有两个数组,其中有不同的日期。所以,我想区分这两个

数组在日历中显示为事件的日期。

请建议一些方法摆脱这种感谢。谢谢。

1 个答案:

答案 0 :(得分:1)

CGColor是EKCalendar的属性。 EKEvents没有为其设置颜色的属性。特定日历中的所有事件都具有相同的颜色。

您可以为颜色区分创建不同的日历

    EKEventStore *eventStore = [[EKEventStore alloc] init];

    EKCalendar *calendar = [EKCalendar calendarWithEventStore:eventStore];
    calendar.title = calendarName; // set calendar name
    calendar.CGColor = [UIColor grayColor].CGColor // set whichever color you want here

    bool success= [eventStore saveCalendar:calendar commit:YES error:&error];

参考this