我是靠谱客的博主 淡定朋友,最近开发中收集的这篇文章主要介绍适配 iOS 10,极光推送用户要做这 6 处更改,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Change 1:升级至 Xcode 8

建议尽快升级。使用 iOS 10 SDK 需要 Xcode 8 的支持。iOS 10 推出两周内,安装率就已经达到 48.16%,不升级 Xcode 8 并适配 iOS 10 意味着你现在可能已经损失了 50% 的高端客户,而且在未来的几个月内或许会陆续损失 90% 以上的客户。

Change 2:Xcode 8 推送基本配置

  1. 首先跟以前版本的 Xcode 没什么区别。下载自己在 Apple Developer 官网申请好的证书、描述文件(iOS 证书 设置指南)。填写 Bundle Identifier、选择开发者,正确配置后,这里不会有任何异常警告:

  2. Target - your target - Capabilities - 开启 Push Notifications
    证书如果配置正确,这里会自动打勾。系统会在工程目录里生成一个 projectName.entitlements 文件,请不要随意删除、修改:

  3. Target - your target - Capabilities - 开启 Background Modes - 勾选最后一项 Remote Notifications(这是 iOS 7 以后支持的 App 在后台收到推送时能够让开发者执行一段代码的功能,建议开启[iOS 7 Background Remote Notification]、[iOS 推送全解析 - Tip5:后台推送/静默推送])

Change 3:更新 JPush iOS SDK >= v2.1.9

  1. 资源下载
  2. 替换工程中原有的 JPush SDK 文件为 JPUSHService.hjpush-ios-2.1.9.a
  3. Target - your target - Build Phases - Link Binary With Libraries - 引入一个新的库 UserNotifications.framework

Change 4:更改注册推送代码

原先向系统注册并请求推送权限的代码是酱紫的,根据 iOS 8 以后及以前分两步:

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];
}

现在在前面加了一段 iOS 10 的注册方法:

//Required
if ([[UIDevice currentDevice].systemVersion floatValue] >= 10.0) {
JPUSHRegisterEntity * entity = [[JPUSHRegisterEntity alloc] init];
entity.types = UNAuthorizationOptionAlert|UNAuthorizationOptionBadge|UNAuthorizationOptionSound;
[JPUSHService registerForRemoteNotificationConfig:entity delegate:self];
}
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];
}

Change 5:实现代理 <JPUSHRegisterDelegate> 方法

在 Change 4 中的该行代码处会报警告:

[JPUSHService registerForRemoteNotificationConfig:entity delegate:self];

其中的 self 类必须实现 <JPUSHRegisterDelegate>,其是对 iOS 10 接收推送并处理的代理 <UNUserNotificationCenterDelegate> 的封装。

实现 <JPUSHRegisterDelegate> 的两个方法:

- (void)jpushNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(NSInteger))completionHandler {
// Required
NSDictionary * userInfo = notification.request.content.userInfo;
if([notification.request.trigger isKindOfClass:[UNPushNotificationTrigger class]]) {
[JPUSHService handleRemoteNotification:userInfo];
}
completionHandler(UNNotificationPresentationOptionAlert); // 需要执行这个方法,选择是否提醒用户,有Badge、Sound、Alert三种类型可以选择设置
}
- (void)jpushNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)())completionHandler {
// Required
NSDictionary * userInfo = response.notification.request.content.userInfo;
if([response.notification.request.trigger isKindOfClass:[UNPushNotificationTrigger class]]) {
[JPUSHService handleRemoteNotification:userInfo];
}
completionHandler();
// 系统要求执行这个方法
}

其中:

  • willPresentNotification 在展示推送之前触发,可以在此替换推送内容,更改展示效果:内容、声音、角标。
  • didReceiveNotificationResponse 在收到推送后触发,你原先写在 didReceiveRemoteNotification 方法里接收推送并处理相关逻辑的代码,现在需要在这个方法里也写一份:
    • App 处于后台收到推送触发
    • 点击推送条目或横幅后,App 进入前台或 App 启动触发
    • App 处于前台时触发

Change 6:Notification Service Extension & Notification Content

这两个 iOS 10 的新特性,暂未包含在 JPush SDK 中,需要用户手动创建相应的 Target 并实现。

Notification Service Extension

主要负责修改推送内容、增加图片、gif、audio、video 展示。
收到推送小图 - 下拉 - 展示大图


Notification Content

用于完全自定义推送展示 UI,响应用户操作事件,并即时更新推送展示 UI。
注意下图中点击 Accept 后,推送 UI 里日程表 UI 发生了刷新。




文/pikacode(简书作者)
原文链接:http://www.jianshu.com/p/41cb80ea18bd
著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”。

最后

以上就是淡定朋友为你收集整理的适配 iOS 10,极光推送用户要做这 6 处更改的全部内容,希望文章能够帮你解决适配 iOS 10,极光推送用户要做这 6 处更改所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部