SDK Delegates
SDK Lifecycle Delegates
PushSDK.setSDKLifecycleDelegate(self)[PushSDK setSDKLifecycleDelegate:self];Finished Loading
func pushSDK(didFinishLoading configuration: PNApplicationConfig, withNotificationSettings settings: UNNotificationSettings) {
// Add code to execute after SDK finishes loading
}- (void)pushSDKDidFinishLoading:(PNApplicationConfig *)configuration withNotificationSettings:(UNNotificationSettings *)settings {
// Add code to execute after SDK finishes loading
}Permission Lifecycle Delegates
PushSDK.setPermissionLifecycleDelegate(self)[PushSDK setPermissionLifecycleDelegate:self];Permission Status Changed
Notification Lifecycle Delegates
Notification Received
Notification Opened With URI/URL Destination
App Message Lifecycle Delegates
App Message Will Present
App Message Received User Interaction
Last updated