---
title: scheduledNotifications
framework: foundation
role: symbol
role_heading: Instance Property
path: foundation/nsusernotificationcenter/schedulednotifications
---

# scheduledNotifications

Specifies an array of scheduled user notifications that have not yet been delivered.

## Declaration

```swift
var scheduledNotifications: [NSUserNotification] { get set }
```

## Discussion

Discussion Newly scheduled notifications are added to the end of the array. You may also bulk-schedule notifications by setting this array. Bulk setting new scheduled notifications unschedules existing notifications. note: The scheduled user notification could be changing to a delivered notification at the time you are calling this method. and if that case the user notification will still be delivered.

## See Also

### Managing the Scheduled Notification Queue

- [scheduleNotification(_:)](foundation/nsusernotificationcenter/schedulenotification(_:).md)
- [removeScheduledNotification(_:)](foundation/nsusernotificationcenter/removeschedulednotification(_:).md)
