0
這裏是我打電話創建名爲BART本地日曆的方法:爲什麼我的iPhone的iCal顯示在本地源中創建的日曆?
- (void)createCalendar
{
[self setEventStore: [[EKEventStore alloc] init]];
EKSource *local = nil;
for (EKSource *source in eventStore.sources){
if (source.sourceType == EKSourceTypeLocal){
local = source;
break;
}
}
NSSet *cals = [local calendars];
NSLog(@"%@\n",cals);
[self setBart: [EKCalendar calendarWithEventStore: eventStore]];
bart.source = local;
bart.title = @"BART";
[eventStore saveCalendar:bart commit:YES error:nil];
}
當我測試我的iPhone上運行的程序,日曆不會出現在我的iCal,但在Xcode顯示我的輸出窗口本地資源存在並且它包含我創建的日曆。我怎樣才能讓iCal顯示日曆?
你想顯示使用內置的「日曆應用」日曆? – 2012-07-17 16:37:21
是的,我想使用內置的「日曆應用程序」來顯示日曆。 @BlackFrog – user1521318 2012-07-17 17:03:04