---
title: Updating with notifications
framework: eventkit
role: collectionGroup
role_heading: API Collection
path: eventkit/updating-with-notifications
---

# Updating with notifications

Register for notifications about changes and keep your app up to date.

## Overview

Overview It’s possible for another process or app to modify the Calendar database while your app is running. If your app fetches calendar events or reminders, register to be notified about changes to the Calendar database to ensure the calendar and reminder information you display to the user is current. Register for Notifications An EKEventStore object posts an EKEventStoreChangedNotification notification whenever it detects changes to the Calendar database. Register for this notification if your app handles event or reminder data. The code listing below registers for the EKEventStoreChangedNotification notification. NotificationCenter.default.addObserver(self, selector: Selector("storeChanged:"), name: .EKEventStoreChanged, object: eventStore) Respond to Notifications When you receive an EKEventStoreChangedNotification notification, it’s possible the objects you’ve fetched—such as an EKEvent, EKReminder, or EKCalendar—have changed. The effect of the changes depends on whether an event was added, modified, or deleted: If an event was added, it does not affect any of your previously fetched events or reminders, but the added event may fall within the date range of events you are displaying to the user. If an event was modified or deleted, properties of EKEvent and EKReminder objects representing that event may become out of date. Because your local data is often invalidated or incomplete when a change occurs in the Calendar database, you should refetch your current date range of events whenever you receive an EKEventStoreChangedNotification notification. If you are modifying an event and do not want to refetch it unless it is absolutely necessary, call the refreshSourcesIfNecessary() method on the event. If the method returns YES, you can continue to use the event; otherwise, you must refetch it.  note: Events being modified in an event view controller with EventKitUI for iOS are updated automatically when a change occurs in the Calendar database. See EventKit UI for more.

## See Also

### Events and reminders

- [Creating events and reminders](eventkit/creating-events-and-reminders.md)
- [Retrieving events and reminders](eventkit/retrieving-events-and-reminders.md)
- [Managing location-based reminders](eventkit/managing-location-based-reminders.md)
- [EKEvent](eventkit/ekevent.md)
- [EKReminder](eventkit/ekreminder.md)
