• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 检查 EKCalendar

[复制链接]
菜鸟教程小白 发表于 2022-12-13 02:42:17 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

美好的一天! 我通过 UIActivityItems 使用“将事件保存到日历”功能。在该函数中,我创建新日历并将事件添加到此日历:

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

// Get the calendar source
EKSource* localSource;
for (EKSource* source in eventStore.sources) {
    if (source.sourceType == EKSourceTypeLocal)
    {
        localSource = source;
        break;
    }
}

if (!localSource)
    return;

EKCalendar *newCalendar = [EKCalendar calendarForEntityType:EKEntityTypeEvent eventStore:eventStore];
calendar.source = localSource;
calendar.title = @"New Calendar";

NSError *errorCalendar;
[eventStore saveCalendar:newCalendar commit:YES error:&errorCalendar]; 

EKEvent *event  = [EKEvent eventWithEventStore:eventStore];
event.title     = @"Title";

event.startDate = startDate;
event.endDate   = endDate;

[event setCalendar:newCalendar];
// and etc.

及其工作。但每次下一次它都会再次创建名为“新日历”的新日历。如何检查具有该名称的日历是否已存在?以及如何更改日历类型?生日等。



Best Answer-推荐答案


首先,您需要在应用的生命周期中使用 EventStore 的单个实例,according to Apple .

因此我建议将 eventStore 设为 View Controller 的属性:

@property(非原子,保留)EKEventStore *eventStore;

在你的 viewDidLoad:

self.eventStore = [[EKEventStore alloc] init];

现在您可以在执行任何操作之前检查您正在读取和写入的同一 eventStore 实例:

-(BOOL)checkForCalendar {
    //get an array of the user's calendar using your instance of the eventStore
    NSArray *calendarArray = [self.eventStore calendarsForEntityType:EKEntityTypeEvent];

    // The name of the calendar to check for. You can also save the calendarIdentifier and check for that if you want
    NSString *calNameToCheckFor = @"New Calendar";

    EKCalendar *cal;

    for (int x = 0; x < [calendarArray count]; x++) {

        cal = [calendarArray objectAtIndex:x];
        NSString *calTitle = [cal title];

        // if the calendar is found, return YES
        if (([calTitle isEqualToString:calNameToCheckFor]) {

            return YES;
        }
    }

    // Calendar name was not found, return NO;
    return NO;
}

-(void)saveNewEvent {

    // If the calendar does not already exist, create it before you save the event.
    if ([self checkForCalendar] == NO) { 

        // Get the calendar source
        EKSource* localSource;
        for (EKSource* source in eventStore.sources) {
            if (source.sourceType == EKSourceTypeLocal)
            {
                localSource = source;
                break;
            }
        }

        if (!localSource)
            return;

        EKCalendar *newCalendar = [EKCalendar calendarForEntityType:EKEntityTypeEvent eventStore:eventStore];
        calendar.source = localSource;
        calendar.title = @"New Calendar";

        NSError *errorCalendar;
        [eventStore saveCalendar:newCalendar commit:YES error:&errorCalendar];

    } 
        EKEvent *event  = [EKEvent eventWithEventStore:self.eventStore];
        event.title     = @"Title";
        event.startDate = startDate;
        event.endDate   = endDate;
        [event setCalendar:newCalendar];
        // and etc.
}

关于ios - 检查 EKCalendar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16675838/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap