DDUserNotification

@interface DDUserNotification

A ShortLook-displayable notification representing a real user notification sent by an application to the system.

  • A custom notification title, separate from the application’s title.

    Declaration

    Objective-C

    @property (nonatomic, retain, readonly) NSString *notificationTitle
  • A dictionary of any extra information included by ShortLook.

    Declaration

    Objective-C

    @property (nonatomic, retain) NSDictionary *userInfo
  • The system notification request that created this notification.

    Declaration

    Objective-C

    @property (nonatomic, retain, readonly) NCNotificationRequest *request;
  • The user notification’s content, sent by the application.

    Declaration

    Objective-C

    - (UNNotificationContent *)content;
  • A dictionary of any extra information provided by the application sending the notification.

    Declaration

    Objective-C

    - (id)applicationUserInfo;
  • The bundle identifier of the application this notification represents.

    Declaration

    Objective-C

    - (id)senderIdentifier;