An array of attachments to display in an alert-based notification.
SDKs
- iOS 10.0+
- macOS 10.14+
- Mac Catalyst 13.0+
- watchOS 3.0+
Framework
- User
Notifications
Declaration
var attachments: [UNNotification Attachment] { get set }
Discussion
Use this property to include images or movies, or to include playable audio files, with the contents of an alert. The system displays the attachments alongside the title and body of your alert. You can also customize the presentation of attachments using a notification content app extension.
All attachments must reside locally on the current device before they can be added. For local notifications, modify this property before scheduling the notification. For remote notifications, use a notification service app extension to locate and download the specified files and modify the notification content before it is delivered.
For more information on how to specify attachments, see UNNotification
.