Mobile landings
Mobile Landings allow you to easily introduce continuity between your app, and your pushes: A user opening a push will be greeted by a rich message related to what they opened, rather than just ending up on your app's main menu.
They're included in the Startup, Business and Enterprise plans.

Displaying the message
Automatic mode
There's no code required to make mobile landings work in automatic mode: just attach a landing to your push campaign, and Batch will display it.
You might want to go further into this documentation, and setup your delegate, or head to the Custom Actions documentation to add custom behaviour to buttons.
Manual mode
You may want to be in control of if, when and how landings will be loaded and displayed. Batch allows you to disable automatic displaying, and handle loading and displaying the view controller itself.
First, you'll need to implement UNUserNotificationCenterDelegate in a class (for more information, please see the Intercepting notifications part):
Then, you have to disable the automatic mode and set your class as your default UNUserNotificationCenter delegate:
Finally, you need to ask Batch to load the right view controller for the push payload (if applicable), and display it:
Controlling the display using "Do Not Disturb mode"
"Do Not Disturb" (DnD) feature: It allows you to tell Batch to hold on a mobile landing for you, rather than display it without using the fully manual mode. For example, if launching your app results in a splash screen or a fullscreen ad, you might find it undesirable to have Batch display something on top of it.
Turning on "Do Not Disturb" mode will make Batch enqueue the latest mobile landing, rather than display it.
Toggling DnD
Now, when you don't want Batch to automatically display, turn on Do Not Disturb:
Once you want to start showing landings automatically, call the method with false to turn it off.
Displaying pending mobile landings
After coming back from DnD mode, you might want to show the enqueued message, as Batch will not do that automatically. Batch exposes two properties/methods for managing the queue:
BatchMessaging.hasPendingMessage, allowing you to peek into the queue.BatchMessaging.popPendingMessage(), allowing you to fetch the pending message (if any). Since calling this makes Batch delete its reference to it to save memory, further calls might returnnil.BatchMessaging.showPendingMessage(), allowing you to try to show the pending message, if any.
Here is a quick example of how they can be used:
Listening to lifecycle events and reacting to button actions
Setting up a delegate
Batch's messaging module supports setting up a delegate, which can be used for analytics:
It can be any object that implements the BatchMessagingDelegate protocol.
Analytics delegate
Batch can notify your delegate of lifecycle events of the in-app messages:
Custom button actions
In order to be able to use the "Custom" button action kind, you need to implement them using the Batch Actions module. More info here: Custom Actions
Customizing the landing
Setting a custom font
If you'd like to use a custom font instead of the system's, Batch allows you to override the fonts it will use:
The size will be overriden later, so you can use anything you want. Make sure you provide both a normal and a bold font, even if they are the same.
Troubleshooting
Nothing happens when I press an actionable button
Take a look at your application logs in Xcode, the SDK might try to warn you about an issue. Here are some the common messages and their probable cause:
Deeplinks on iOS are automatically called by the SDK using sharedApplication's openURL method. Since it needs a NSURL instance, the deeplink string needs to be a valid URL accepted by iOS' NSURL class. Please try again with a valid URL.
This can happen when you specified a custom action when creating the campaign on the dashboard, but the SDK couldn't execute it.
Make sure you always register your actions at every app start.
Last updated

