<!--
{
  "availability" : [
    "iOS: 4.0.0 - 10.0.0",
    "iPadOS: 4.0.0 - 10.0.0",
    "macCatalyst: 13.1.0 - 13.1.0"
  ],
  "documentType" : "symbol",
  "framework" : "UIKit",
  "identifier" : "/documentation/UIKit/UIApplication/scheduledLocalNotifications",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Property",
  "symbol" : {
    "kind" : "Instance Property",
    "modules" : [
      "UIKit"
    ],
    "preciseIdentifier" : "c:objc(cs)UIApplication(py)scheduledLocalNotifications"
  },
  "title" : "scheduledLocalNotifications"
}
-->

# scheduledLocalNotifications

All currently scheduled local notifications.

```
var scheduledLocalNotifications: [UILocalNotification]? { get set }
```

## Discussion

This property holds an array of [`UILocalNotification`](/documentation/UIKit/UILocalNotification) objects representing the current scheduled local notifications. Use this property to access the currently scheduled notifications, perhaps to cancel them. Assigning a new value to this property implicitly schedules all of the notifications in the new array.

This method may be faster than using [`scheduleLocalNotification(_:)`](/documentation/UIKit/UIApplication/scheduleLocalNotification(_:)) when scheduling a large number of notifications.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)