Using the OS X Notification Center

From RAD Studio
Jump to: navigation, search

Go Up to OS X Application Development


Local notifications allow background or inactive applications to notify users that an event has occurred that is of interest or related to the app. This topic describes the basic steps to use local notifications on your OS X application.

Mountain Lion (OS X 10.8) added the notification functionality and the Notification Center. This is very similar to iOS, where you can schedule local notifications or present them immediately.

About Notifications

There are three types of notifications in OS X:

Notification Type Description Preview

Alert

Appears in the upper right-hand corner of the Mac, but the alert remains on the screen until the user takes an action.

Notification Alert.png

Banner

Appears in the upper right-hand corner of the Mac for a short period of time, then slides off screen to the right.

Notification Banner.png

Badge

A red badge with a number appears in the upper-right of the icon of an app. The badge keeps a count of how many notifications are waiting for you in an app.

Note: The badge is not supported. For an example of how to implement badges without using the TNotificationCenter component, see: OSX Dock Badges

Accessing the Notification Service

RAD Studio provides the TNotificationCenter component that allows you to easily access the Notification Service.

To access the Notification Service, drop a TNotificationCenter component on your form.

  • RAD Studio adds the following unit for Delphi:
uses
  System.Notification;
  • RAD Studio adds the following include operator to the project header file for C++:
#include <System.Notification.hpp>

Notification Center on OS X

All un-actioned notifications go to the Notification Center. When a pop-up notification appears on the screen, and the user does not click it, it goes to the Notification Center. Alerts remain in the Notification Center until the user takes the appropriate action.

You can easily show and hide the Notification Center just by clicking Notification Center icon.png on the right-hand side of the menu bar. When the user clicks a notification in the Notification Center, the app opens or comes to the foreground.

Notification Center on Menu Bar.png

A notification can appear as a pop-up banner or as an alert when the app is running in the background or is inactive. The user can decide the way these notifications are presented in OS X:

Notifications Icon.png

  1. Open System Preferences > Notifications.
  2. Find the app on the left.
  3. Select None, Banners or Alerts.
Note: When the user selects None, no pop-up notification is shown, and notifications go directly to the Notification Center. By default, your app shows the notification banner.

The following screenshot shows the configuration window for the Notification Center:

OSXNotificationCenter.png

Creating Notifications

To allow your app to display local notifications on OS X, you need to create an instance of the TNotification class object. The System.Notification.TNotificationCenter.CreateNotification method allows you to create this instance.

When your app creates a local-notification object, the app can either schedule the notification with the operating system or present it immediately. Local notifications are ideally suited for apps with time-based behaviors. You can specify the time the operating system delivers the notification; this is known as the fire date. You can also repeat a scheduled notification.

To include notification messages in your OS X apps:

  1. Create an instance of the TNotification class.
  2. Create a notification using CreateNotification.
  3. Define the Name, AlertBody, and FireDate fields.

Notifications stay in the Notification Center until you delete them.

Each Notification Message is identified by the Name property of the TNotification object.

To update or delete a notification:

  • To update a scheduled notification, call the ScheduleNotification method again with an instance of TNotificationCenter that has the same name (Name property).
  • To cancel a notification, call the CancelNotification method with the identifier you used.
  • To cancel all notifications, call the CancelAll method.

See Also