极光推送精准跳转及简化AppDelegate代码(分类方法)

之前项目集成极光推送,遇到了一些问题,现在闲下来,总结一下分享给大家。

我在这里主要分享的是跳转的实现和优化AppDelegate.h里的代码。其他的集成和什么的简书上已经有很多的大神发表过了,你们随便找找就可以了。

直接入正题,平时我们接受到远程推送的时候,点击消息分两种情况。

一. 程序没杀死的状态下,走的是以下极光的这个代理方法。

iOS 9 之后:
- (void)jpushNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)())completionHandler ;


iOS 9 之前:
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler

二. 程序已经杀死的状态下,走的是appDelegate的launchOptions方法。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

所以跳转处理要处理要在这两个地方做处理,因为我项目是做push跳转的,在两个地方做跳转处理的时候,要做区分。
在APP被杀死的情况下,点击远程推送,因为主界面没初始化完成,要做延时处理。这里用了一个笨方法。延时调用,具体时间要看你们APP的启动速度。


 [self performSelector:@selector(pushToTargetVCWithdentifier:) withObject:receiveReuserInfo afterDelay:1.0];

下面的是整个流程的代码实现


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  //其他逻辑代码省略.......

  //注册消息处理函数的处理方法
 JPUSHRegisterEntity * entity = [[JPUSHRegisterEntity alloc] init];
 entity.types=JPAuthorizationOptionAlert|JPAuthorizationOptionBadge|JPAuthorizationOptionSound;

    [JPUSHService registerForRemoteNotificationConfig:entity delegate:self];
    [JPUSHService setupWithOption: launchOptions appKey:@"极光推送的Key"
                                 channel: @"iPhone"
                 apsForProduction: 0
            advertisingIdentifier: nil];

// 跳转的逻辑代码
// 如果是点击消息推送启动APP
if(receiveReuserInfo && [[NSUserDefaults standardUserDefaults] objectForKey:kXSUserID] ){
  
    [self performSelector:@selector(pus hToTargetVCWithdentifier:) withObject:receiveReuserInfo afterDelay:1.0];// 1.0是延时跳    转,具体的参考你们APP的启动速度
    }
    return YES;
}

#pragma mark - iOS7.0 later notification suport
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler{
    [JPUSHService handleRemoteNotification:userInfo];
    if ([[UIDevice currentDevice].systemVersion floatValue]<10.0 && application.applicationState >=1 ) {
        NSLog(@"ios 7.0 later后台接收远程推送");
        [self pushToTargetVCWithdentifier:userInfo];
    }else{
        NSLog(@"ios 7.0 later前台接收远程推送");
    }
    completionHandler(UIBackgroundFetchResultNewData);
}

#pragma mark - JPUSHRegisterDelegate iOS10.0 later suport
- (void)jpushNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)())completionHandler {
    
    NSDictionary * userInfo        = response.notification.request.content.userInfo;
    UNNotificationRequest *request = response.notification.request;                             // 收到推送的请求
    UNNotificationContent *content = request.content;                                                    // 收到推送的消息内容
    UNNotificationSound   *sound   = content.sound;                                                         // 推送消息的声音
    NSNumber *badge                = content.badge;                                                              // 推送消息的角标
    NSString *body                 = content.body;                                                                      // 推送消息体
    NSString *subtitle             = content.subtitle;                                                                    // 推送消息的副标题
    NSString *title                = content.title;                                                                             // 推送消息的标题

    if([response.notification.request.trigger isKindOfClass:[UNPushNotificationTrigger class]]  ) {
        [JPUSHService handleRemoteNotification:userInfo];

        if([UIApplication sharedApplication].applicationState >= 1){
  
                [self pushToTargetVCWithdentifier:userInfo];                                                          // 跳转处理
        }
    }else{
        NSLog(@"iOS10 收到本地通知");
    }
       completionHandler();  // 系统要求执行这个方法
}

 // 这里做Push跳转的实现
- (void)pushToTargetVCWithdentifier:(NSDictionary *)notifInfoDict {
    
    XSTabBarController *tabVC            = (XSTabBarController *)self.window.rootViewController;
    tabVC.select = 2;  
    XSBaseNavigationController *navVC    = tabVC.selectedViewController;
    //初始化完成,跳转到你想要的目标界面
   }

接下来分类实现,我们是把消息推送在APPDelegate的代码抽离出来,单独一个分类处理,这样APPDelegate中的代码就不会那么臃肿。创建APPDelegate分类,把消息推送的相关代码移动到分类中,但是需要到APPDelegate中的方法时候,我们公开方法出来就可以了,切记不要重写APPDelegate中的其他公共方法,因为分类的优先级大于原来的类, 重新回覆盖原来的方法,这样你的公共方法在APPDelegate中就不生效。

推送分类的JPushCategory.h文件实现相关代码
#import "AppDelegate.h"
#import "JPUSHService.h"
@interface AppDelegate (JPushCategory)<JPUSHRegisterDelegate>// 成为代理

// 在AppDelegate实现的代码
/* 注册远程推送 */
-(void)setupRemoteNotificationWithlunchInfo:(NSDictionary *)launchOptions;

/* 移除角标 */
- (void)showBadgeCount ;

@end

之后再推送分类的JPushCategory.m文件实现相关代码


#import "AppDelegate+JPushCategory.h"

#import "XSJpushManager.h"
#import "JPUSHService.h"
#import <AdSupport/AdSupport.h>
#ifdef NSFoundationVersionNumber_iOS_9_x_Max
#import <UserNotifications/UserNotifications.h>
#import "EBForeNotification.h"
#import "XSImDBManager.h"
#import "XSBaseNavigationController.h"
#endif

@implementation AppDelegate (JPushCategory)
-(void)setupRemoteNotificationWithlunchInfo:(NSDictionary *)launchOptions {
    [self registerNotificationWith:launchOptions]; // 注册远程推送
// 如果是点击消息推送启动APP
if(receiveReuserInfo && [[NSUserDefaults standardUserDefaults] objectForKey:kXSUserID] ){
  
        [self performSelector:@selector(pus hToTargetVCWithdentifier:) withObject:receiveReuserInfo afterDelay:1.0];// 1.0是延时跳转,具体的参考你们APP的启动速度
    }
}

- (void)registerNotificationWith:(NSDictionary *)launchOptions{
    
    JPUSHRegisterEntity * entity = [[JPUSHRegisterEntity alloc] init];
    entity.types = JPAuthorizationOptionAlert|JPAuthorizationOptionBadge|JPAuthorizationOptionSound;
    
    
    [JPUSHService registerForRemoteNotificationConfig:entity delegate:self];
    [JPUSHService setupWithOption: launchOptions appKey:JPushKey
                          channel: JPushChannel
                 apsForProduction: JPushProduction
            advertisingIdentifier: nil];
    
}

-(void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken{
    [JPUSHService registerDeviceToken:deviceToken]; //注册通知 DeviceToken
    
}

#pragma mark - iOS7.0 later notification suport
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler{
    [JPUSHService handleRemoteNotification:userInfo];
    if ([[UIDevice currentDevice].systemVersion floatValue]<10.0 && application.applicationState >=1 ) {
        NSLog(@"ios 7.0 later后台接收远程推送");
        [self pushToTargetVCWithdentifier:userInfo];
        
    }else{
        NSLog(@"ios 7.0 later前台接收远程推送");
        
    }
    completionHandler(UIBackgroundFetchResultNewData);
}


#pragma mark - JPUSHRegisterDelegate iOS10.0 later suport
#ifdef NSFoundationVersionNumber_iOS_9_x_Max
- (void)jpushNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(NSInteger))completionHandler {
    
    NSDictionary * userInfo = notification.request.content.userInfo;
    if([notification.request.trigger isKindOfClass:[UNPushNotificationTrigger class]]) {
        [JPUSHService handleRemoteNotification:userInfo];
    }else {
        NSLog(@"iOS10 前台收到本地通知");
        if ([UIApplication sharedApplication].applicationState < 1) {
            //NSDictionary *noti = @{@"aps":@{@"alert":notification.request.content.body}};
            //[EBForeNotification handleRemoteNotification:noti soundID:1312 isIos10:YES];
        }
    }
    completionHandler(UNNotificationPresentationOptionBadge); // 需要执行这个方法,选择是否提醒用户,有Badge、Sound、Alert三种类型可以设置
}


- (void)jpushNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)())completionHandler {
    
    NSDictionary * userInfo        = response.notification.request.content.userInfo;
    UNNotificationRequest *request = response.notification.request;                           // 收到推送的请求
    UNNotificationContent *content = request.content;                                                   // 收到推送的消息内容
    UNNotificationSound   *sound   = content.sound;                                                       // 推送消息的声音
    NSNumber *badge                = content.badge;                                                             // 推送消息的角标
    NSString *body                 = content.body;                                                                    // 推送消息体
    NSString *subtitle             = content.subtitle;                                                                // 推送消息的副标题
    NSString *title                = content.title;                                                                           // 推送消息的标题
    
    if([response.notification.request.trigger isKindOfClass:[UNPushNotificationTrigger class]]  ) {
        [JPUSHService handleRemoteNotification:userInfo];
        [self pushToTargetVCWithdentifier:userInfo];                                                              // 跳转处理
        
    }else{
        NSLog(@"iOS10 收到本地通知")
    }
    completionHandler();                                                                                                            // 系统要求执行这个方法
}

#endif


// 消息推送跳转处理
- (void)pushToTargetVCWithdentifier:(NSDictionary *)notifInfoDict {
 
}

- (void)showBadgeCount{
    
    [JPUSHService setBadge: 0];
    [[UIApplication sharedApplication] setApplicationIconBadgeNumber: 0]; // 极光推送角标处理
}

// 在AppDelegate中实现的代码


@interface AppDelegate ()

@end

@implementation AppDelegate


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    /*注册推送*/
    [self setupRemoteNotificationWithlunchInfo:launchOptions];
    
    return YES;
}


- (void)applicationWillEnterForeground:(UIApplication *)application {
    [application cancelAllLocalNotifications];
    [self showBadgeCount];
}


- (void)applicationWillResignActive:(UIApplication *)application {
    [self showBadgeCount];
}

最后,第一写的比较多,文章也借鉴了很多文章,不过时间太久,找不到链接了,在这里谢谢大神们的分享。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,029评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,238评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,576评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,214评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,324评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,392评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,416评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,196评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,631评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,919评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,090评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,767评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,410评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,090评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,328评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,952评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,979评论 2 351

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,943评论 25 707
  • 推送通知注意:这里说的推送通知跟NSNotification有所区别NSNotification是抽象的,不可见的...
    醉叶惜秋阅读 1,509评论 0 3
  • 极光推送: 1.JPush当前版本是1.8.2,其SDK的开发除了正常的功能完善和扩展外也紧随苹果官方的步伐,SD...
    Isspace阅读 6,713评论 10 16
  • 说一下最近项目里遇到的极光推送: 具体步骤: 一:首先需要一个推送的p12 证书:我是传送门(创建推送证书) 但是...
    9e5f2143c765阅读 718评论 0 0