Inherits from UAUserNotificationAction : NSObject
Declared in UAMutableUserNotificationAction.h

Overview

Clone of UIMutableUserNotificationAction for iOS 7 support.

Properties

activationMode

The mode in which to run the app when the action is performed.

@property (nonatomic, assign) UIUserNotificationActivationMode activationMode

Declared In

UAMutableUserNotificationAction.h

authenticationRequired

A Boolean value indicating whether the user must unlock the device before the action is performed.

@property (nonatomic, assign, getter=isAuthenticationRequired) BOOL authenticationRequired

Declared In

UAMutableUserNotificationAction.h

destructive

A Boolean value indicating whether the action is destructive

@property (nonatomic, assign, getter=isDestructive) BOOL destructive

Declared In

UAMutableUserNotificationAction.h

identifier

The string that you use internally to identify the action.

@property (nonatomic, copy, nullable) NSString *identifier

Declared In

UAMutableUserNotificationAction.h

title

The localized string to use as the button title for the action.

@property (nonatomic, copy, nullable) NSString *title

Declared In

UAMutableUserNotificationAction.h

Class Methods

actionWithUIUserNotificationAction:

Factory method for creating a UAMutableUserNotificationAction out of a UIUserNotificationAction.

+ (instancetype)actionWithUIUserNotificationAction:(UIUserNotificationAction *)uiAction

Parameters

uiAction

An instance of UIUserNotificationAction.

Return Value

An instance of UAUserNotificationAction.

Declared In

UAMutableUserNotificationAction.h