2018-06-29 IOS 学习知识点5

接触到的项目没有一个不用推送的,几乎都是远程推送,本地推送较少。今天主要讲远程推送

苹果的推送服务,叫做APNS:Apple Push Notification Service.用网络上的一张图来介绍。


APNS介绍

1、app向iOS系统注册远程推送服务,系统向苹果服务器(APNS)索要device  token。

2、APNS 返回device token,APP接收device token

3、APP  将device token发送给 推送服务器(可以自己做,也可以采用个推、极光等第三方推送)

4、业务需要时,服务端将消息发给APNS

5、APNS 将消息发给指定APP以及指定的设备

讲道理,以前只知道使用第三方推送,按照第三方的文档进行配置,原理还是最近才了然。

其中1-3步骤是需要我们做一些工作的。

注册推送服务

不同ios系统注册推送服务是不一样的,ios7一套方法,ios8、9是一套方法,ios10又是一套方法。

不过现在已经ios11了,建议只兼容ios8及其以上就行。deployment target 设定为ios8。

if(IOS10_OR_LATER) {

        UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];

        center.delegate=self;

      [centerrequestAuthorizationWithOptions:(UNAuthorizationOptionSound | UNAuthorizationOptionAlert) completionHandler:^(BOOL                 granted, NSError *_Nullable error) {//只请求了声音和弹框,没有角标

            if(granted) {//用户允许推送

                      [[UIApplication sharedApplication] registerForRemoteNotifications];//注册服务

               }

        }];

}else{//ios10 以下,到ios8

         UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert  | UIUserNotificationTypeSound categories:nil];

        [[UIApplication sharedApplication] registerUserNotificationSettings:settings];

}

假如用户拒绝了推送权限申请,可以在应用内继续向用户申请,具体可参考之前写的一篇文章。

鉴于用户可能拒绝权限申请,建议注册服务写在applicationWillEnterForeground方法中,这样每次进入应用前台就会注册服务,而不是写在didFinishLaunchingWithOptions方法中。


接收device token  

这个方法没有发生变化,一直都在- (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken 方法中,在此方法中,要将device token发送给自己或第三方的推送服务器。


处理远程消息

ios10提供了两个代理方法来处理接收到的远程推送消息

//应用在后台会触发此方法

- (void)userNotificationCenter:(UNUserNotificationCenter*)center

didReceiveNotificationResponse:(UNNotificationResponse*)response

         withCompletionHandler:(void(^)(void))completionHandler{

        //业务代码

       completionHandler();

}

//应用在前台触发此方法

- (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void(^)(UNNotificationPresentationOptions))completionHandler{

}

ios10以下,统一由一个方法处理

- (void)application:(UIApplication*)application didReceiveRemoteNotification:(NSDictionary*)userInfo fetchCompletionHandler:(void(^)(UIBackgroundFetchResult))completionHandler {

    completionHandler();        

}


远程推送还需要推送证书,这块就不详细介绍了。

你可能感兴趣的:(2018-06-29 IOS 学习知识点5)