前言
在北京时间9月14号凌晨1点,苹果正式推送ios 10正式版,下面给大家详细的介绍ios10推送的基础知识,在看完简单入门篇大家就可以简单适配了,然后再通过中级篇的内容,相信对大家学习理解有很大的帮助,下面话不多说了,来看看吧。
一、简单入门篇
相对简单的推送证书以及环境的问题,我就不在这里讲啦,我在这里说的,是指原有工程的适配。
1.首先我们需要打开下面的开关。所有的推送平台,不管是极光还是什么的,要想收到推送,这个是必须打开的哟~
之后,系统会生成一个我们以前没见过的文件,如图:
可能产生的问题:之前有朋友反馈过,将开发环境由 development 变成 production ,在开关这里会产生错误,如图:
如果大家点击fix issue之后,会惊奇的发现,aps environment由 production 又变成 development 了。
解决办法:我的建议是不做任何修改。
经过我的测试,打包之后,生成的ipa包内,是没有这个.entitlements 文件的。经过测试,我发现是可以正常收到推送信息的。测试的方法如下,大家也可以测试一下。
测试方法:打包之后安装ipa文件,然后利用极光推送,选择生产环境,推送,即可。
经过上面的操作,你就会惊奇的发现,推送已经适配完毕了,ios10的系统,已经可以正常接收通知了。
二、中级篇
这里我会给大家讲一讲ios10的推送,如何注册,通过什么代理,哪些方法可以用,哪些方法不可以用。
1.系统自带方法
大家不管是使用三方平台的推送,还是系统自带的推送,都先应该了解下系统自带方法,如何实现远程通知的实现。
第一步导入#import <usernotifications/usernotifications.h>
且要遵守<unusernotificationcenterdelegate>的协议,在appdelegate.m中。
这里需要注意,我们最好写成这种形式
1
2
3
|
#ifdef nsfoundationversionnumber_ios_9_x_max #import <usernotifications/usernotifications.h> #endif |
第二步我们需要在 (bool)application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions
中注册通知,代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
- ( bool )application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions { if ([[uidevice currentdevice].systemversion floatvalue] >= 10.0) { //ios10特有 unusernotificationcenter *center = [unusernotificationcenter currentnotificationcenter]; // 必须写代理,不然无法监听通知的接收与点击 center.delegate = self; [center requestauthorizationwithoptions:(unauthorizationoptionalert | unauthorizationoptionbadge | unauthorizationoptionsound) completionhandler:^( bool granted, nserror * _nullable error) { if (granted) { // 点击允许 nslog(@ "注册成功" ); [center getnotificationsettingswithcompletionhandler:^(unnotificationsettings * _nonnull settings) { nslog(@ "%@" , settings); }]; } else { // 点击不允许 nslog(@ "注册失败" ); } }]; } else if ([[uidevice currentdevice].systemversion floatvalue] >8.0){ //ios8 - ios10 [application registerusernotificationsettings:[uiusernotificationsettings settingsfortypes:uiusernotificationtypealert | uiusernotificationtypesound | uiusernotificationtypebadge categories:nil]]; } else if ([[uidevice currentdevice].systemversion floatvalue] < 8.0) { //ios8系统以下 [application registerforremotenotificationtypes:uiremotenotificationtypebadge | uiremotenotificationtypealert | uiremotenotificationtypesound]; } // 注册获得device token [[uiapplication sharedapplication] registerforremotenotifications]; |
其中,获得device token的方法是没有改变的。
1
2
3
4
5
6
7
8
9
10
|
// 获得device token - ( void )application:(uiapplication *)application didregisterforremotenotificationswithdevicetoken:(nsdata *)devicetoken { nslog(@ "%@" , [nsstring stringwithformat:@ "device token: %@" , devicetoken]); } // 获得device token失败 - ( void )application:(uiapplication *)application didfailtoregisterforremotenotificationswitherror:(nserror *)error { nslog(@ "did fail to register for remote notifications with error: %@" , error); } |
此次ios10系统的更新,苹果给了我们2个代理方法来处理通知的接收和点击事件,这两个方法在<unusernotificationcenterdelegate>的协议中,大家可以查看下。此外,苹果把本地通知跟远程通知合二为一。区分本地通知跟远程通知的类是unpushnotificationtrigger.h
类中,unpushnotificationtrigger
的类型是新增加的,通过它,我们可以得到一些通知的触发条件,在使用时,我们不应该直接使用这个类,应当使用它的子类。
我简单点说
1.unpushnotificationtrigger
(远程通知) 远程推送的通知类型
2.untimeintervalnotificationtrigger
(本地通知) 一定时间之后,重复或者不重复推送通知。我们可以设置timeinterval
(时间间隔)和repeats
(是否重复)。
3.uncalendarnotificationtrigger
(本地通知) 一定日期之后,重复或者不重复推送通知 例如,你每天8点推送一个通知,只要datecomponents
为8,如果你想每天8点都推送这个通知,只要repeats为yes就可以了。
4.unlocationnotificationtrigger
(本地通知)地理位置的一种通知,
当用户进入或离开一个地理区域来通知。在clregion标识符必须是唯一的。因为如果相同的标识符来标识不同区域的unnotificationrequests
,会导致不确定的行为。
接收通知的代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// ios 10收到通知 - ( void )usernotificationcenter:(unusernotificationcenter *)center willpresentnotification:(unnotification *)notification withcompletionhandler:( void (^)(unnotificationpresentationoptions options))completionhandler{ nsdictionary * userinfo = notification.request.content.userinfo; unnotificationrequest *request = notification.request; // 收到推送的请求 unnotificationcontent *content = request.content; // 收到推送的消息内容 nsnumber *badge = content.badge; // 推送消息的角标 nsstring *body = content.body; // 推送消息体 unnotificationsound *sound = content.sound; // 推送消息的声音 nsstring *subtitle = content.subtitle; // 推送消息的副标题 nsstring *title = content.title; // 推送消息的标题 if ([notification.request.trigger iskindofclass:[unpushnotificationtrigger class ]]) { nslog(@ "ios10 前台收到远程通知:%@" , [self logdic:userinfo]); } else { // 判断为本地通知 nslog(@ "ios10 前台收到本地通知:{\\\\nbody:%@,\\\\ntitle:%@,\\\\nsubtitle:%@,\\\\nbadge:%@,\\\\nsound:%@,\\\\nuserinfo:%@\\\\n}" ,body,title,subtitle,badge,sound,userinfo); } completionhandler(unnotificationpresentationoptionbadge|unnotificationpresentationoptionsound|unnotificationpresentationoptionalert); // 需要执行这个方法,选择是否提醒用户,有badge、sound、alert三种类型可以设置 } |
下面的代码则是通知的点击事件:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// 通知的点击事件 - ( void )usernotificationcenter:(unusernotificationcenter *)center didreceivenotificationresponse:(unnotificationresponse *)response withcompletionhandler:( void (^)())completionhandler{ nsdictionary * userinfo = response.notification.request.content.userinfo; unnotificationrequest *request = response.notification.request; // 收到推送的请求 unnotificationcontent *content = request.content; // 收到推送的消息内容 nsnumber *badge = content.badge; // 推送消息的角标 nsstring *body = content.body; // 推送消息体 unnotificationsound *sound = content.sound; // 推送消息的声音 nsstring *subtitle = content.subtitle; // 推送消息的副标题 nsstring *title = content.title; // 推送消息的标题 if ([response.notification.request.trigger iskindofclass:[unpushnotificationtrigger class ]]) { nslog(@ "ios10 收到远程通知:%@" , [self logdic:userinfo]); } else { // 判断为本地通知 nslog(@ "ios10 收到本地通知:{\\\\nbody:%@,\\\\ntitle:%@,\\\\nsubtitle:%@,\\\\nbadge:%@,\\\\nsound:%@,\\\\nuserinfo:%@\\\\n}" ,body,title,subtitle,badge,sound,userinfo); } // warning: unusernotificationcenter delegate received call to -usernotificationcenter:didreceivenotificationresponse:withcompletionhandler: but the completion handler was never called. completionhandler(); // 系统要求执行这个方法 } |
在点击事件中,如果我们不写completionhandler()
这个方法,可能会报一下的错误,希望大家注意下~
1
|
warning: unusernotificationcenter delegate received call to -usernotificationcenter:didreceivenotificationresponse:withcompletionhandler: but the completion handler was never called. |
最后最后,我们要大家补充一下,旧版本的一些方法,方便大家扩充ios10的通知的通知,不影响原有逻辑。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
- ( void )application:(uiapplication *)application didreceiveremotenotification:(nsdictionary *)userinfo { nslog(@ "ios6及以下系统,收到通知:%@" , [self logdic:userinfo]); } - ( void )application:(uiapplication *)application didreceiveremotenotification:(nsdictionary *)userinfo fetchcompletionhandler: ( void (^)(uibackgroundfetchresult))completionhandler { nslog(@ "ios7及以上系统,收到通知:%@" , [self logdic:userinfo]); completionhandler(uibackgroundfetchresultnewdata); } |
2.极光推送(需要下载最新的版本)
如果用到三方的一些平台,做推送就会更为简单。
1.注册通知的代码如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
if ([[uidevice currentdevice].systemversion floatvalue] >= 10.0) { #ifdef nsfoundationversionnumber_ios_9_x_max jpushregisterentity * entity = [[jpushregisterentity alloc] init]; entity.types = unauthorizationoptionalert|unauthorizationoptionbadge|unauthorizationoptionsound; [jpushservice registerforremotenotificationconfig:entity delegate:self]; #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]; } |
注册完成之后,我们则需要加入极光推送更新后,新加入的2个方法,这两个方法在<jpushregisterdelegate>
代理方法中。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* * @brief handle usernotifications.framework [willpresentnotification:withcompletionhandler:] * @param center [unusernotificationcenter currentnotificationcenter] 新特性用户通知中心 * @param notification 前台得到的的通知对象 * @param completionhandler 该callback中的options 请使用unnotificationpresentationoptions */ - ( void )jpushnotificationcenter:(unusernotificationcenter *)center willpresentnotification:(unnotification *)notification withcompletionhandler:( void (^)(nsinteger options))completionhandler; /* * @brief handle usernotifications.framework [didreceivenotificationresponse:withcompletionhandler:] * @param center [unusernotificationcenter currentnotificationcenter] 新特性用户通知中心 * @param response 通知响应对象 * @param completionhandler */ - ( void )jpushnotificationcenter:(unusernotificationcenter *)center didreceivenotificationresponse:(unnotificationresponse *)response withcompletionhandler:( void (^)())completionhandler; |
使用时,只需要在上面的代码中添加极光的处理方法就可以了,具体使用如下图:
1
2
3
4
5
6
7
8
9
10
11
|
if ([response.notification.request.trigger iskindofclass:[unpushnotificationtrigger class ]]) { // 这个方法,不管是收到通知代理还是点击通知的代理,如果使用极光推送,我们都是需要增加这个方法的。 [jpushservice handleremotenotification:userinfo]; nslog(@ "ios10 收到远程通知:%@" , [self logdic:userinfo]); [rootviewcontroller addnotificationcount]; } else { // 判断为本地通知 nslog(@ "ios10 收到本地通知:{\\\\nbody:%@,\\\\ntitle:%@,\\\\nsubtitle:%@,\\\\nbadge:%@,\\\\nsound:%@,\\\\nuserinfo:%@\\\\n}" ,body,title,subtitle,badge,sound,userinfo); } |
通过上面的文章,相信大家已经可以初步了解新版本的推送,要如何处理啦~
总结
以上就是ios10推送之基础知识的全部内容,不知道大家都学会了吗?希望这篇文章能对各位ios开发者们有所帮助,如果有疑问大家可以留言交流。
原文链接:http://www.jianshu.com/p/f5337e8f336d