---
title: deliveredNotifications
framework: foundation
role: symbol
role_heading: Instance Property
path: foundation/nsusernotificationcenter/deliverednotifications
---

# deliveredNotifications

An array of all user notifications delivered to the notification center.

## Declaration

```swift
var deliveredNotifications: [NSUserNotification] { get }
```

## Discussion

Discussion The number of notifications the user actually sees in the user interface may be less than the size of this array. Note that these may or may not have been actually presented to the user. See the isPresented property in the NSUserNotification class. note: A scheduled user notification that specifies a deliveryRepeatInterval remains in the scheduledNotifications list, even though it has been delivered.  The item that goes into the deliveredNotifications list is a copy of the user notification item.

## See Also

### Managing the Delivered Notifications

- [deliver(_:)](foundation/nsusernotificationcenter/deliver(_:).md)
- [removeDeliveredNotification(_:)](foundation/nsusernotificationcenter/removedeliverednotification(_:).md)
- [removeAllDeliveredNotifications()](foundation/nsusernotificationcenter/removealldeliverednotifications().md)
