phonegap-parse-plugin
phonegap-parse-plugin copied to clipboard
Update CDVParsePlugin.m
Example of the way to hack.
// Call existing method
// [self swizzled_application:application didReceiveRemoteNotification:userInfo];
//[PFPush handlePush:userInfo];
NSString *message = userInfo[@"aps"][@"alert"];
NSString *eventName = @"didReceiveRemoteNotification";
[self.viewController.webView stringByEvaluatingJavaScriptFromString:
[NSString stringWithFormat:@"setTimeout( function() { cordova.fireDocumentEvent('%@', {message:'%@'} ) }, 0);", eventName, message]];
NSLog(@"%@ : %@", eventName, message);
what problem is this trying to address? Just curious as I am considering integrating this plugin into an application