Create iOS interactive push
iOS 8 introduced interactive notifications, allowing users to take actions directly from the notification banner. Pushwoosh now offers iOS Categories, enabling you to create custom buttons within the Pushwoosh Control Panel. Learn more
API
When your application calls registerDevice
, Pushwoosh API returns the response that contains a list of available Categories with their IDs and details for each button as follows:
These Categories are now available on the device, so they can be properly displayed when a message arrives and your application is not running in the foreground.
In order to send your push with a category from the Pushwoosh Journey, simply select it in the iOS platform settings while composing your message. In case you are sending your pushes remotely through Pushwoosh API, in the createMessage
requests you should use the ios_category
parameter with a corresponding Category ID as a value:
When a push message containing a category ID arrives, Pushwoosh SDK displays the notification with a set of buttons this category contains.
Buttons & actions in Pushwoosh iOS SDK
In order to perform various actions upon opening an app, you should create a custom UNUserNotificationCenterDelegate
implementation and override its didReceiveNotificationResponse
method:
CustomDelegate
Where identifier
is a button ID, and category
is derived from the notification payload.
Then, create an instance of this class and pass it to Pushwoosh SDK using the proxy method: