Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Used in order to receive the payload of the notification

Expand
titleiOS [Objective-C]
Code Block
@interface AppDelegate () <AppoxeeNotificationDelegate>

@end

@implementation AppDelegate

#pragma mark - AppoxeeDelegate

- (void)appoxeeManager:(AppoxeeManager *)manager handledRemoteNotification:(APXPushNotification *)pushNotification andIdentifer:(NSString *)actionIdentifier
{
    // a push notification was received.
}

- (void)appoxeeManager:(AppoxeeManager *)manager handledRichContent:(APXRichMessage *)richMessage didLaunchApp:(BOOL)didLaunch
{
    // a rich message was received.
}

...

titleiOS [Swift]

...

Table of Contents