在具有特定活动ID的日历应用中打开“活动详情”

时间:2016-10-04 06:58:34

标签: ios objective-c iphone ekeventkit

我正在尝试使用特定事件打开日历,我已经以编程方式添加了事件,并且这些事件的所有ID都是持久的。

这是我添加事件的方式

-(IBAction)addEvent:(id)sender{
    EKEventStore *store = [[EKEventStore alloc]init];
    [store requestAccessToEntityType:EKEntityTypeReminder completion:^(BOOL granted, NSError *error) {
        if (!granted) { return; }
        EKEvent *event = [EKEvent eventWithEventStore:store];
        event.title = @"Demo Title";
        NSDateComponents *comps=[[NSDateComponents alloc]init];
        [comps setDay:4];
        [comps setMonth:10];
        [comps setYear:2016];
        [comps setHour:12];
        [comps setMinute:1];

        NSDate *date=[[[NSCalendar alloc]initWithCalendarIdentifier:NSCalendarIdentifierGregorian] dateFromComponents:comps];
        _date=date;
        event.startDate = date;
        event.endDate=date;
        event.notes=@"This is event description";

        EKAlarm *alarm=[EKAlarm alarmWithAbsoluteDate:date];
        [event addAlarm:alarm];
        event.calendar = [store defaultCalendarForNewEvents];

        NSError *err=nil;
        [store saveEvent:event span:EKSpanThisEvent commit:YES error:&err];
    }];
}

该活动已成功添加,我也可以打开日历应用,但事情是我无法浏览日历中的活动详情

这是我如何打开日历

-(IBAction)openCalender:(id)sender{
    NSInteger interval = [_date timeIntervalSinceReferenceDate];
    NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"calshow:%ld?eventid=%@", (long)interval,_eventID]];
    NSLog(@"%@",url);
    [[UIApplication sharedApplication] openURL:url];
}

我想要的是下面的截图 enter image description here

我得到的是 enter image description here

任何想法?

2 个答案:

答案 0 :(得分:1)

要回答我自己的问题,使用任何公共API都无法做到这一点

我搜索了一年但这对任何公共API都不可能,但我想可能有一些私有API来做这件事(并且可能这样做会让我们的应用程序被拒绝)。

日历应用程序的小部件正在做我想做的事情,但它的Apple的API不允许我们使用它。洛尔

答案 1 :(得分:0)

我真的不认为有办法做到这一点。即使从默认邮件应用程序创建新日历事件,也会打开日历日视图。如果可以使用此功能,我确定他们至少会在默认邮件应用程序中实现它。