diff options
| author | Rene Ae <aehtyb@gmail.com> | 2015-11-30 17:57:27 -0600 |
|---|---|---|
| committer | Rene Ae <aehtyb@gmail.com> | 2015-11-30 17:57:27 -0600 |
| commit | 99abed397b0c046143d7d6ba7bd0b61eac829e25 (patch) | |
| tree | eeceffcc76dd2ff201b8c62e43c4aaff47fc7d8e /StoneIsland/plugins/phonegap-plugin-push/src/ios/AppDelegate+notification.h | |
| parent | be27ea977b1e7c7903275b42530a81a8e43d7a9b (diff) | |
| parent | ded2f8928dd509acc8d4ae1e4131b622c7bb4d9c (diff) | |
Merge branch 'master' of https://github.com/okfocus/stone-island
Diffstat (limited to 'StoneIsland/plugins/phonegap-plugin-push/src/ios/AppDelegate+notification.h')
| -rw-r--r-- | StoneIsland/plugins/phonegap-plugin-push/src/ios/AppDelegate+notification.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/StoneIsland/plugins/phonegap-plugin-push/src/ios/AppDelegate+notification.h b/StoneIsland/plugins/phonegap-plugin-push/src/ios/AppDelegate+notification.h new file mode 100644 index 00000000..be79903e --- /dev/null +++ b/StoneIsland/plugins/phonegap-plugin-push/src/ios/AppDelegate+notification.h @@ -0,0 +1,21 @@ +// +// AppDelegate+notification.h +// pushtest +// +// Created by Robert Easterday on 10/26/12. +// +// + +#import "AppDelegate.h" + +@interface AppDelegate (notification) +- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken; +- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error; +- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo; +- (void)applicationDidBecomeActive:(UIApplication *)application; +- (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forRemoteNotification:(NSDictionary *)userInfo completionHandler:(void(^)())completionHandler; +- (id) getCommandInstance:(NSString*)className; + +@property (nonatomic, retain) NSDictionary *launchNotification; + +@end |
