...
Example on how to use the sent key in Appoxee iOS SDK is mentioned below:
Objective-C
Code Block |
---|
AppDelegate.m
#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(@"URL - %@", [pushNotification.extraFields objectForKey:@"apx_dpl"]);
}
|
...