iOS Calendars and Reminders (向系统日历添加事件)

Demo地址

一、简介

苹果官方关于日历和提醒简介

Important:An iOS app linked on or after iOS 10.0 must include in itsInfo.plistfile the usage description keys for the types of data it needs to access or it will crash. To access Reminders and Calendar data specifically, it must includeNSRemindersUsageDescriptionandNSCalendarsUsageDescription, respectively.

To access the user’s Calendar data

提示:iOS 10 之后如果app 想要访问日历和提醒事项,我们必须在 我们的app 的Info.plist文件中添加NSRemindersUsageDescription和NSCalendarsUsageDescription的key否则app会闪退。

The EventKit framework helps you access users’ Calendar and Reminders information. Although two different apps display users’ calendar and reminder data, the same framework manipulates the data. Similarly, the database that stores this data, called the Calendar database, holds both calendar and reminder information.

EventKit 可以帮助你访问用户的日历和提醒事项的信息,日历和提醒事项使用相同的框架来访问一个叫做Calendar database 的数据库。

EventKit not only allows your app to retrieve users’ existing calendar and reminder data, but it also lets your app create new events and reminders for any of their calendars. In addition, EventKit lets users edit and delete their events and reminders (collectively known as “calendar items”). More advanced tasks, such as adding alarms or specifying recurring events, can be achieved with EventKit as well. If a change to the Calendar database occurs from outside of your app, EventKit is able to detect the change by notification so your app can act appropriately. Changes made to calendar items with EventKit are automatically synced to the associated calendar (CalDAV, Exchange, and so on).

This document describes EventKit concepts and common programming tasks. You should read this document if you want to display or edit calendar events and/or reminder data from within your app. EventKit provides limited access to a user’s Calendar database; it does not include everything that would be desired for implementing a full-featured calendar or reminder app, such as adding attendees or accounts.

EventKit  允许你的app 访问已经存在于日历和提醒里面的事件,同时也允许你的app创建一个提醒事件添加到日历或者提醒中。用户可以编辑删除日历和提醒里面的事件。EventKit 还可以添加闹铃,和重复提醒的事件。

注意:EKEvent 和 EKReminder都继承于EKCalendarItem, EKCalendarItem类是日历事件和提醒的抽象超类,此类提供常用的属性和方法来访问日历项的属性,例如设置日历的功能,标题和位置,以及支持附加注释,显示与会者,设置多个闹钟和指定重复规则。EKCalendarItem 的calendarItemIdentifier 是它唯一标示,使用EKCalendarItem *item = [store calendarItemWithIdentifier:identifer];可以通过一个唯一标示获取一个EKCalendarItem对象。

二、读取日历和提醒中已存在的事件

⚠️注意:因为 EventStore 是 Calendar database 的数据库引擎,所以应该尽量少的对他进行创建和销毁,所以推荐使用EventStore的时候使用单例模式

读取日历中的事件官方文档

You can fetch, create, edit, and delete events from a user’s Calendar database using theEKEventStoreclass. You can fetch a custom set of events that match a predicate you provide, or you can fetch an individual event by its unique identifier. After you fetch an event, you can access its associated calendar information with the properties of theEKEventclass. Like wise, you can modify its calendar information by setting the properties of theEKEventclass. 

你可以使用EKEventStoreclass进行 查询、创建、编辑和删除 用户存于 Calendar database 中的事件,你可以使用谓词来查询出符合条件的事件集或者使用一个唯一标示来查询一个指定的事件。获取事件之后你可以对他进行一些操作。

1、使用谓词查询日历里面的某个时间范围内的事件

It’s common to fetch events that fall within a date range. TheEKEventStoremethodeventsMatchingPredicate:fetches all events that fall within the date range specified in the predicate you provide.(EKEventStore 可以查询谓词所提供的日期范围内的事件)。 

示例代码如下

+(NSArray*)fetchEventsWithStartDate:(NSDate*)startDate endDate:(NSDate*)enDate{

EKEventStore*store = [STCalendarReminderToolshareinstance];

NSPredicate*predicate = [storepredicateForEventsWithStartDate:startDateendDate:enDatecalendars:nil];

NSArray*events = [storeeventsMatchingPredicate:predicate];

NSIntegeri =1;

for(EKEvent*eventinevents) {

NSLog(@"第%zd个提醒%@",i,event);

i++;

}

returnevents;

}

2、使用唯一标示来查询事件

Using Unique Identifiers

If you know the event’s unique identifier because you fetched it previously with a predicate, you can use theEKEventStoremethodeventWithIdentifier:to fetch the event. If it is a recurring event, this method will return the first occurrence of the event. You can get an event’s unique identifier with theeventIdentifierproperty.

⚠️这种方式只能用来查询日历里面的事件

 示例代码:

+(EKEvent*)fetchEventWithIdentifer:(NSString*)eventidentifer{

EKEventStore*store = [STCalendarReminderToolshareinstance];

EKEvent*event = [storeeventWithIdentifier:eventidentifer];

returnevent;

}

三、向日历中添加一个新的事件

添加新的事件官方文档

Create a new event with the eventWithEventStore: method of the EKEvent class.

You can edit the details of a new event or an event you previously fetched from the Calendar database by setting the event’s corresponding properties. Some of the details you can edit include:

The event’s title with the title property

The event’s start and end dates with the startDate and endDate properties

The calendar with which the event is associated with the calendar property

The alarms associated with the event with the alarms property (see Configuring Alarms for more details)

The event’s recurrence rule, if it is a repeating event, with the recurrenceRules property (see Creating Recurring Events for more details)

示例代码如下:

/**

* STCalendarReminderToolSaveSuccessBlock

* eventIdentifier

*/

typedef void (^STCalendarReminderToolSaveSuccessBlock)(NSString* eventIdentifier);

typedef void (^STCalendarReminderToolSaveFailBlock)(NSError *err);

/** 向日历添加一个事件

* title  事件标题

* notes  事件备注

* location 事件地址

* startDate 开始日期

* endDate  结束日期

* alarms 闹钟

* availability 事件调度

*/

+(void)saveEventWithTitle:(NSString *)title                 

   notes:(NSString *)notes             

   location:(NSString *)location           

     startDate:(NSDate *)startDate           

       endDate:(NSDate *)endDate               

   alarms:(NSArray*)alarms{

URL:(NSURL *)URL

availability:(EKEventAvailability)availability

successBlock:(STCalendarReminderToolSaveSuccessBlock)successBlock

failBlock:(STCalendarReminderToolSaveFailBlock)failBlock{

EKEventStore *store = [STCalendarReminderTool shareinstance];

[store requestAccessToEntityType:EKEntityTypeEvent

completion:

^(BOOL granted, NSError *error) {

dispatch_async(dispatch_get_main_queue(), ^{

if (error) {

//错误信息

return;

}

if (!granted) {

//被用户拒绝,不允许访问日历

return;

}

EKEvent *event = [EKEvent eventWithEventStore:store];

event.title = title;

event.notes = notes;

event.availability = availability;

event.startDate = startDate;

event.endDate = endDate;

event.location  = location;

event.alarms = alarms;

event.calendar = store.defaultCalendarForNewEvents;

event.URL = URL;

NSError *err = nil;

[store saveEvent:event span:EKSpanThisEvent error:&err];

if (!err) {

if (successBlock) {

successBlock(event.eventIdentifier);

}

}else{

if (failBlock) {

failBlock(err);

}

}

NSLog(@"eventIdentifier %@",event.eventIdentifier);

});

}];

}

四、删除事件


+(BOOL)deleteEventWithEventIdentifier:(NSString *)eventIdentifier{

EKEventStore *store = [STCalendarReminderTool shareinstance];

EKEvent *event = [store eventWithIdentifier:eventIdentifier];

// YES立即删除事件;否则,更改将批处理,直到调用commit:方法。

return  [store removeEvent:event span:EKSpanThisEvent commit:YES error:nil];

}

五、查询提醒

5.1 使用谓词查询一个时间范围里的提醒

EKEventStore *store = [STCalendarReminderTool shareinstance];

NSPredicate *predicate = [store predicateForIncompleteRemindersWithDueDateStarting:starDate

ending:endDate

calendars:[store calendarsForEntityType:EKEntityTypeReminder]];

[store fetchRemindersMatchingPredicate:predicate completion:^(NSArray *reminders) {

}];

5.2使用谓词 查询所有的提醒

EKEventStore *store      = [STCalendarReminderTool shareinstance];

NSPredicate  *predicate  = [store predicateForRemindersInCalendars:nil];

[store fetchRemindersMatchingPredicate:predicate completion:^(NSArray *reminders) {

NSInteger i = 1;

for (EKReminder *reminder in reminders) {

}

}];

5.3 使用唯一标示查询提醒

EKReminder 是继承于EKCalendarItem的(⚠️我这里也没有查到用唯一标示查询返回EKReminder的方法相关资料,我的做法是查询到EKCalendarItem然后把它强转成EKReminder),使用这个方法也可以查询日历里面的事件。

+(EKCalendarItem *)fetchReminderWithIdentier:(NSString *)identifer{

EKEventStore *store = [STCalendarReminderTool shareinstance];

EKCalendarItem *item = [store calendarItemWithIdentifier:identifer];

NSLog(@"item  item %@",item);

return item;

}

六、添加新的提醒和删除提醒

6.1添加新的提醒

示例代码:

/**

* STCalendarReminderToolSaveSuccessBlock

* eventIdentifier

*/

typedef void (^STCalendarReminderToolSaveSuccessBlock)(NSString* eventIdentifier);

typedef void (^STCalendarReminderToolSaveFailBlock)(NSError *err);

/*

* title  事件标题

* notes  事件备注

* startDate 开始日期

* endDate  结束日期

* alarms 闹钟

* priority 事件调度(1-4 高 5中  6-9低  0 不设置)

* completed

*/

+(void)saveEventIntoReminderWithTitle:(NSString *)title

notes:(NSString *)notes

startDate:(NSDate *)startDate

endDate:(NSDate *)endDate

alarm:(EKAlarm *)alarm

priority:(NSInteger)priority

completed:(BOOL)completed

successBlock:(STCalendarReminderToolSaveSuccessBlock)successBlock

failBlock:(STCalendarReminderToolSaveFailBlock)failBlock{

EKEventStore *store = [STCalendarReminderTool shareinstance];

[store requestAccessToEntityType:EKEntityTypeReminder

completion:

^(BOOL granted, NSError *error) {

dispatch_async(dispatch_get_main_queue(), ^{

if (error) {

if (failBlock) {

failBlock(error);

}

return;

}

if (!granted) {

//被用户拒绝,不允许访问提醒

return;

}

EKReminder *reminder = [EKReminder reminderWithEventStore:store];

[reminder setCalendar:[store defaultCalendarForNewReminders]];

reminder.title      = title;

reminder.notes      = notes;

reminder.completed  = completed;

reminder.priority    = priority;

[reminder addAlarm:alarm];

NSCalendar *calender = [NSCalendar currentCalendar];

[calender setTimeZone:[NSTimeZone systemTimeZone]];

NSInteger flags      = NSCalendarUnitYear | NSCalendarUnitMonth |

NSCalendarUnitDay |NSCalendarUnitHour | NSCalendarUnitMinute |

NSCalendarUnitSecond;

NSDateComponents* startDateComp = [calender components:flags fromDate:startDate];

startDateComp.timeZone = [NSTimeZone systemTimeZone];

reminder.startDateComponents = startDateComp;

NSDateComponents* endDateComp = [calender components:flags fromDate:startDate];

endDateComp.timeZone  = [NSTimeZone systemTimeZone];

reminder.dueDateComponents = endDateComp;

NSError *err;

[store saveReminder:reminder commit:YES error:&err];

if (!err) {

if (successBlock) {

successBlock(reminder.calendarItemIdentifier);

}

}else{

if (failBlock) {

failBlock(err);

}

}

});

}];

}

6.2 删除一个提醒

+(BOOL)deleteReminderWithIdentifer:(NSString *)identifier{

EKEventStore *store = [STCalendarReminderTool shareinstance];

EKCalendarItem *item = [store calendarItemWithIdentifier:identifier];

EKReminder *reminder = (EKReminder *)item;

return  [store removeReminder:reminder commit:YES error:nil];

}

七、使用系统提供的视图控制器添加、修改或删除事件


先导入#import <EventKitUI/EventKitUI.h>

7.1添加一个事件

EKEventEditViewController *editVC = [[EKEventEditViewController alloc] init];

editVC.eventStore = [STCalendarReminderTool shareStoreinstance];

editVC.editViewDelegate = self;

[self presentViewController:editVC animated:YES completion:nil];

遵循EKEventEditViewDelegate 代理

实现代理方法

#pragma -mark EKEventEditViewDelegate

-(void)eventEditViewController:(EKEventEditViewController *)controller didCompleteWithAction:(EKEventEditViewAction)action{

[self dismissViewControllerAnimated:YES completion:^{

}];

}

7.2 修改事件

如果要修改一个事件直接把他传给EKEventEditViewController,如下:

EKEventEditViewController *editVC = [[EKEventEditViewController alloc] init];

editVC.eventStore = [STCalendarReminderTool shareStoreinstance];

editVC.editViewDelegate = self;

editVC.event      = event;

[self presentViewController:editVC animated:YES completion:nil];

其他操作和新加一个事件的一致。

八、总结

写的有不好的地方希望大家指出,我会修正的,大家有什么看不明白的也可以在评论里面提问,我会尽力解答。

Demo地址

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 158,560评论 4 361
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 67,104评论 1 291
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 108,297评论 0 243
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 43,869评论 0 204
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 52,275评论 3 287
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,563评论 1 216
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,833评论 2 312
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,543评论 0 197
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,245评论 1 241
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,512评论 2 244
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 32,011评论 1 258
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,359评论 2 253
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 33,006评论 3 235
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,062评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,825评论 0 194
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,590评论 2 273
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,501评论 2 268

推荐阅读更多精彩内容