An object that delivers notifications from apps to the user.
SDK
- macOS 10.8–10.14Deprecated
Framework
- Foundation
Declaration
class NSUserNotificationCenter : NSObject
Overview
When a user notification’s delivery date has been reached, or it is manually delivered, the notification center may display the notification to the user. The user notification center reserves the right to decide if a delivered user notification is presented to the user. For example, it may suppress the notification if the application is already frontmost (the delegate can override this action). The application can check the result of this decision by examining the is
property of a delivered user notification.
NSUser
instances the NSUser
are tracking will be in one of two states: scheduled or delivered. A scheduled user notification has a delivery
. On that delivery date, the notification will move from being scheduled to being delivered. Note that the user notification may be displayed later than the delivery date depending on a number of factors.
A delivered user notification has an actual
. That is the date when it moved from being scheduled to delivered, or when it was manually delivered using the deliver(_:)
method.
The application and the user notification center are both ultimately subject to the user’s preferences. If the user decides to hide all alerts from your application, the presented
property will still behave as above, but the user will not see any animation or hear any sound.
The NSUser
provides more information about the delivered user notification and allows forcing the display of a user notification even if the application is frontmost.
Note
It the user wakes more than 15 minutes after a scheduled notification is scheduled to fire, it is discarded. If the notification repeats with an interval less than 15 minutes, then it expires in 1 minute. Expired notifications are just discarded, unless they repeat, in which case, they stay in the scheduled list and just fire again later.
Important
Many of the NSUserNotificationCenter class’s methods involve talking to a server process, so calling them repeatedly can have a negative effect on performance.
Threading Information
The NSUser
class and the NSUser
class are both thread safe.