Skip to content

Instantly share code, notes, and snippets.

@flurrydev
Created October 10, 2018 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flurrydev/03711db44e936ad33d8d57f1241e5c89 to your computer and use it in GitHub Desktop.
Save flurrydev/03711db44e936ad33d8d57f1241e5c89 to your computer and use it in GitHub Desktop.
Implement Flurry Messaging delegate method for clicked (Obj-C)
// delegate method when a notification action is performed
-(void) didReceiveActionWithIdentifier:(nullable NSString\*)identifier message:(nonnull FlurryMessage\*)message {
NSLog(@"didReceiveAction %@ , Message = %@",identifier, [message description]);
//Any app specific logic goes here.
//Ex: Deeplink logic. See Flurry Push sample App (loading of viewControllers (nibs or storboards))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment