mirror of
https://github.com/jpush/jpush-phonegap-plugin.git
synced 2026-04-19 00:03:45 +08:00
404f19037e
1.更新手动安装文档 2.fix 影响其他插件使用的 bug
66 lines
2.2 KiB
Objective-C
66 lines
2.2 KiB
Objective-C
//
|
|
// AppDelegate+JPush.m
|
|
// delegateExtention
|
|
//
|
|
// Created by 张庆贺 on 15/8/3.
|
|
// Copyright (c) 2015年 JPush. All rights reserved.
|
|
//
|
|
|
|
#import "AppDelegate+JPush.h"
|
|
#import "JPushPlugin.h"
|
|
#import "JPUSHService.h"
|
|
#import <objc/runtime.h>
|
|
|
|
@implementation AppDelegate (JPush)
|
|
|
|
+(void)load{
|
|
|
|
Method origin;
|
|
Method swizzle;
|
|
|
|
origin=class_getInstanceMethod([self class],@selector(init));
|
|
swizzle=class_getInstanceMethod([self class], @selector(init_plus));
|
|
method_exchangeImplementations(origin, swizzle);
|
|
}
|
|
|
|
-(instancetype)init_plus{
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidLaunch:) name:@"UIApplicationDidFinishLaunchingNotification" object:nil];
|
|
return [self init_plus];
|
|
}
|
|
|
|
-(void)applicationDidLaunch:(NSNotification *)notification{
|
|
if (notification) {
|
|
[JPushPlugin setLaunchOptions:notification.userInfo];
|
|
}
|
|
}
|
|
|
|
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
|
|
[JPUSHService registerDeviceToken:deviceToken];
|
|
}
|
|
|
|
-(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo{
|
|
[JPUSHService handleRemoteNotification:userInfo];
|
|
[[NSNotificationCenter defaultCenter] postNotificationName:kJPushPluginReceiveNotification object:userInfo];
|
|
}
|
|
|
|
-(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler{
|
|
[JPUSHService handleRemoteNotification:userInfo];
|
|
[[NSNotificationCenter defaultCenter] postNotificationName:kJPushPluginReceiveNotification object:userInfo];
|
|
completionHandler(UIBackgroundFetchResultNewData);
|
|
}
|
|
|
|
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification {
|
|
[JPUSHService showLocalNotificationAtFront:notification identifierKey:nil];
|
|
}
|
|
|
|
- (void)applicationWillEnterForeground:(UIApplication *)application {
|
|
// [application setApplicationIconBadgeNumber:0];
|
|
// [application cancelAllLocalNotifications];
|
|
}
|
|
|
|
- (void)applicationDidEnterBackground:(UIApplication *)application {
|
|
// [[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
|
|
}
|
|
|
|
@end
|