A media file associated with a notification.
SDKs
- iOS 10.0+
- macOS 10.14+
- Mac Catalyst 13.0+
- watchOS 3.0+
Framework
- User
Notifications
Declaration
class UNNotificationAttachment : NSObject
Overview
Create a UNNotification
object when you want to include audio, image, or video content together in an alert-based notification. When creating the UNNotification
object, the file you specify must be on disk, and the file format must be one of the supported types.
You are responsible for supplying attachments before the system displays your notification's alert. For local notifications, add attachments when creating the notification’s content. For remote notifications, use a notification service app extension to download the attached files and then add them to the notification's content before delivery.
The system validates attachments before displaying the associated notification. If you attach a file to a local notification request that is corrupted, invalid, or of an unsupported file type, the system doesn't schedule your request. For remote notifications, the system validates attachments after your notification service app extension finishes. Once validated, attached files are moved into the attachment data store so that they can be accessed by all of the appropriate processes. Attachments located inside an app’s bundle are copied instead of moved.
Supported File Types
Table 1 lists the types of files you can include as an attachment and the supported file formats. The table also lists the maximum size allowed for attachments of each type. An image file may contain a static image or an animated image sequence.
Supported attachment file types
Attachment | Supported file types | Maximum size |
---|---|---|
Audio |
| 5 MB |
Image | 10 MB | |
Movie |
| 50 MB |
When creating an attachment, you can specify optional details about how to present the thumbnail image for the image or movie. Use the UNNotification
option to use only the specified portion of an image as a thumbnail. For animated images and movies, use the UNNotification
option to select which frame to use for the thumbnail image.
The amount of storage space allocated for attachments is limited for each app. To delete attachments, use the methods of the UNUser
class to remove the notification requests that contain those attachments.