UAInboxPushHandlerDelegate Protocol Reference
Conforms to | NSObject |
Declared in | UAInboxPushHandler.h |
Overview
This protocol defines a delegate method that is called when a push notification arrives with a rich push message ID embedded in its payload.
Tasks
-
– richPushNotificationArrived:
required method -
– applicationLaunchedWithRichPushNotification:
required method -
– richPushMessageAvailable:
required method -
– launchRichPushMessageAvailable:
required method -
– showInboxMessage:
required method -
– showInbox
required method
Instance Methods
applicationLaunchedWithRichPushNotification:
Handle a rich push notification that launched the application.
- (void)applicationLaunchedWithRichPushNotification:(NSDictionary *)notification
Parameters
- notification
An NSDictionary with the push notification contents.
Declared In
UAInboxPushHandler.h
launchRichPushMessageAvailable:
Called when a Rich Push message associated with the push that launched the application is available for viewing.
- (void)launchRichPushMessageAvailable:(UAInboxMessage *)richPushMessage
Parameters
- richPushMessage
The Rich Push message
Declared In
UAInboxPushHandler.h
richPushMessageAvailable:
Called when a new Rich Push message is available for viewing.
- (void)richPushMessageAvailable:(UAInboxMessage *)richPushMessage
Parameters
- richPushMessage
The Rich Push message
Declared In
UAInboxPushHandler.h
richPushNotificationArrived:
Handle an incoming rich push notification.
- (void)richPushNotificationArrived:(NSDictionary *)notification
Parameters
- notification
An NSDictionary with the push notification contents.
Declared In
UAInboxPushHandler.h