...
Code Block |
---|
#pragma mark - Schemes - (void)appoxee:(nonnull Appoxee *)appoxee handledRemoteNotification:(nonnull APXPushNotification *)pushNotification andIdentifer:(nonnull NSString *)actionIdentifier { // Here the special field will be received in extra parameters in "pushNotification" NSLog(@"Notification received"URL - %@", [pushNotification.extraFields objectForKey:@"apx_url"]); } |
Swift
Code Block |
---|
#pragma mark - Schemes func appoxee(_ appoxee: Appoxee, handledRemoteNotification pushNotification: APXPushNotification, andIdentifer actionIdentifier: String) { // Here the special field will be received in extra parameters in "pushNotification" print("Notification received") } |
...