Contents

scheduledLocalNotifications

All currently scheduled local notifications.

Declaration

var scheduledLocalNotifications: [UILocalNotification]? { get set }

Discussion

This property holds an array of 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(_:) when scheduling a large number of notifications.

See Also

Deprecated properties