如果从外部来源(其他设备,谷歌)向其中添加了事件,是否可以从EKEventStore
或EKCalendar
接收回调?
最佳答案
所以我有一个EKEventStore
的监听器
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(receiveEventStoreChangedNotification:) name:EKEventStoreChangedNotification object:nil];
并且每次更改EventStore数据时都会调用它。
关于ios - 如何获取本地日历更新回调,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39979070/