iOS 10极光推送适配(最新)

iOS10发布后,发现项目中的极光推送接收消息异常了。
查了相关资料后才发现,iOS10中对于通知做了不少改变。同时也发现极光也很快更新了对应的SDK。
现在就把适配修改的做法分享一下,希望对有需要的童鞋有所帮助。

具体做法如下:

注意:必须先安装Xcode8.0版本。

  • 一、添加相关的SKD,或framework文件
    1、添加UserNotification.framework
    20160921154820192.png

    2、更新JPush的SDK 最新版本
    20160921154830625.png
  • 二、进行路径和消息推送的配置
    1、设置jpush的SDK的路径,如:$(PROJECT_DIR)/项目名称/路径/jpush-ios-2.1.9.a
    20160921154944548.png

    2、开启消息推送功能
    20160921155021532.png
  • 三、代码修改
  • 1、添加userNotification的头文件


    20160921155330949.png

    2、添加userNotification的启用代码


    20160921155341824.png

    3、添加JPush的适配代码
    20160921155425184.png

    4、添加JPush的代理和代理方法(注意:在appDelegate.m文件中使用)


    20160921155500159.png
20160921155512107.png
  • 补充:完整的使用极光
  • 1、导入相应头文件
#import "JPUSHService.h"  
#import <AdSupport/AdSupport.h>  
#ifdef NSFoundationVersionNumber_iOS_9_x_Max  
// 这里是iOS10需要用到的框架  
#import <UserNotifications/UserNotifications.h>  
#endif  
  • 2、启动极光推送功能
static NSString *JPushAppKey  = @"your appKey";  //在官网申请的appKey
static NSString *JPushChannel = @"Publish channel";  
// static BOOL JPushIsProduction = NO;  
#ifdef DEBUG  
// 开发 极光FALSE为开发环境  
static BOOL const JPushIsProduction = FALSE;  
#else  
// 生产 极光TRUE为生产环境  
static BOOL const JPushIsProduction = TRUE;  
#endif 
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {  
    // Override point for customization after application launch.  
      
    // 启动极光推送  
    // Required  
    // - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { }  
    if ([[UIDevice currentDevice].systemVersion floatValue] >= 10.0) // iOS10  
    {  
#ifdef NSFoundationVersionNumber_iOS_9_x_Max  
        JPUSHRegisterEntity *entity = [[JPUSHRegisterEntity alloc] init];  
        entity.types = (UNAuthorizationOptionAlert | UNAuthorizationOptionBadge | UNAuthorizationOptionSound);  
        [JPUSHService registerForRemoteNotificationConfig:entity delegate:target];  
#endif  
    }  
    else if ([[UIDevice currentDevice].systemVersion floatValue] >= 8.0)  
    {  
        // categories  
        [JPUSHService registerForRemoteNotificationTypes:(UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert)  
                                              categories:nil];  
    }  
    else  
    {  
        // categories nil  
        [JPUSHService registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)  
                                              categories:nil];  
    }  
      
    // Required  
    // [JPUSHService setupWithOption:launchOptions]  
    // pushConfig.plist appKey  
    // 有广告符标识IDFA(尽量不用,避免上架审核被拒)  
    /* 
    NSString *JPushAdvertisingId = [[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString]; 
    [JPUSHService setupWithOption:JPushOptions 
                           appKey:JPushAppKey 
                          channel:JPushChannel 
                 apsForProduction:JPushIsProduction 
            advertisingIdentifier:JPushAdvertisingId]; 
    */  
    // 或无广告符标识IDFA(尽量不用,避免上架审核被拒)  
    [JPUSHService setupWithOption:options  
                           appKey:JPushAppKey  
                          channel:JPushChannel  
                 apsForProduction:JPushIsProduction];  
      
    // 2.1.9版本新增获取registration id block接口。  
    [JPUSHService registrationIDCompletionHandler:^(int resCode, NSString *registrationID) {  
        if(resCode == 0)  
        {  
            // iOS10获取registrationID放到这里了, 可以存到缓存里, 用来标识用户单独发送推送  
            NSLog(@"registrationID获取成功:%@",registrationID);  
            [[NSUserDefaults standardUserDefaults] setObject:registrationID forKey:@"registrationID"];  
            [[NSUserDefaults standardUserDefaults] synchronize];  
        }  
        else  
        {  
            NSLog(@"registrationID获取失败,code:%d",resCode);  
        }  
    }];  
    return YES;  
}  
  • 3、注册
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken  
{  
    [JPUSHService registerDeviceToken:data];  
} 
  • 4、注册失败
- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificwationsWithError:(NSError *)error  
{  
    NSLog(@"did Fail To Register For Remote Notifications With Error: %@", error);  
} 
  • 5、接收
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo  
{  
    // apn 内容获取:  
    // 取得 APNs 标准信息内容  
    [JPUSHService handleRemoteNotification: userInfo];  
} 
  • 6、处理通知
    6-1、iOS10以下版本时
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler  
{  
    DLog(@"2-1 didReceiveRemoteNotification remoteNotification = %@", userInfo);  
      
    // apn 内容获取:  
    [JPUSHService handleRemoteNotification:dict];  
    completionHandler(UIBackgroundFetchResultNewData);  
      
    DLog(@"2-2 didReceiveRemoteNotification remoteNotification = %@", userInfo);  
    if ([userInfo isKindOfClass:[NSDictionary class]])  
    {  
        NSDictionary *dict = userInfo[@"aps"];  
        NSString *content = dict[@"alert"];  
        DLog(@"content = %@", content);  
    }  
      
    if (application.applicationState == UIApplicationStateActive)  
    {  
        // 程序当前正处于前台  
    }  
    else if (application.applicationState == UIApplicationStateInactive)  
    {  
        // 程序处于后台  
    }  
}  

6-2、iOS10及以上版本时

#pragma mark - iOS10: 收到推送消息调用(iOS10是通过Delegate实现的回调)  
#pragma mark- JPUSHRegisterDelegate  
  
#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];  
    }  
      
    // 需要执行这个方法,选择是否提醒用户,有Badge、Sound、Alert三种类型可以设置  
    // completionHandler(UNNotificationPresentationOptionBadge | UNNotificationPresentationOptionSound | UNNotificationPresentationOptionAlert);  
}  
  
// 程序关闭后, 通过点击推送弹出的通知  
- (void)jpushNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)())completionHandler  
{  
    NSDictionary *userInfo = response.notification.request.content.userInfo;  
      
    if ([response.notification.request.trigger isKindOfClass:[UNPushNotificationTrigger class]])  
    {  
        [JPUSHService handleRemoteNotification:userInfo];  
    }  
      
    completionHandler();  // 系统要求执行这个方法  
}  
#endif  
  • 7、其他注意事项

为了保证用户能正常接收,或有针对性的接收通知,登录成功后(或退出后)需要设置别名、标记。通常都是该逻辑都是写在用户登录APP成功之后,或者是用户退出当前登录状态后。

/// 绑定别名(注意:1 登录成功或者自动登录后;2 去除绑定-退出登录后)  
+ (void)JPushTagsAndAliasInbackgroundTags:(NSSet *)set alias:(NSString *)name  
{  
    // 标签分组(表示没有值)  
    NSSet *tags = set;  
    // 用户别名(自定义值,nil是表示没有值)  
    NSString *alias = name;  
    NSLog(@"tags = %@, alias = %@(registrationID = %@)", tags, alias, [self registrationID]);  
      
    // tags、alias均无值时表示去除绑定  
    [JPUSHService setTags:tags aliasInbackground:alias];  
}  

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

推荐阅读更多精彩内容