欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

iOS开发系列--通知与消息机制详解

程序员文章站 2023-12-22 10:23:10
概述 在多数移动应用中任何时候都只能有一个应用程序处于活跃状态,如果其他应用此刻发生了一些用户感兴趣的那么通过通知机制就可以告诉用户此时发生的事情。ios中通知机制又叫消...

概述
在多数移动应用中任何时候都只能有一个应用程序处于活跃状态,如果其他应用此刻发生了一些用户感兴趣的那么通过通知机制就可以告诉用户此时发生的事情。ios中通知机制又叫消息机制,其包括两类:一类是本地通知;另一类是推送通知,也叫远程通知。两种通知在ios中的表现一致,可以通过横幅或者弹出提醒两种形式告诉用户,并且点击通知可以会打开应用程序,但是实现原理却完全不同。今天就和大家一块去看一下如何在ios中实现这两种机制,并且在文章后面会补充通知中心的内容避免初学者对两种概念的混淆。

本地通知

本地通知是由本地应用触发的,它是基于时间行为的一种通知形式,例如闹钟定时、待办事项提醒,又或者一个应用在一段时候后不使用通常会提示用户使用此应用等都是本地通知。创建一个本地通知通常分为以下几个步骤:

  • 创建uilocalnotification。
  • 设置处理通知的时间firedate。
  • 配置通知的内容:通知主体、通知声音、图标数字等。
  • 配置通知传递的自定义数据参数userinfo(这一步可选)。
  • 调用通知,可以使用schedulelocalnotification:按计划调度一个通知,也可以使用presentlocalnotificationnow立即调用通知。

下面就以一个程序更新后用户长期没有使用的提醒为例对本地通知做一个简单的了解。在这个过程中并没有牵扯太多的界面操作,所有的逻辑都在appdelegate中:进入应用后如果没有注册通知,需要首先注册通知请求用户允许通知;一旦调用完注册方法,无论用户是否选择允许通知此刻都会调用应用程序的- (void)application:(uiapplication *)application didregisterusernotificationsettings:(uiusernotificationsettings *)notificationsettings代理方法,在这个方法中根据用户的选择:如果是允许通知则会按照前面的步骤创建通知并在一定时间后执行。

appdelegate.m

//
// appdelegate.m
// localnotification
//
// created by kenshin cui on 14/03/28.
// copyright (c) 2014年 kenshin cui. all rights reserved.
//

#import "appdelegate.h"
#import "kcmainviewcontroller.h"

@interface appdelegate ()

@end

@implementation appdelegate

#pragma mark - 应用代理方法
- (bool)application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions {
  
  _window=[[uiwindow alloc]initwithframe:[uiscreen mainscreen].bounds];
  
  _window.backgroundcolor =[uicolor colorwithred:249/255.0 green:249/255.0 blue:249/255.0 alpha:1];
  
  //设置全局导航条风格和颜色
  [[uinavigationbar appearance] setbartintcolor:[uicolor colorwithred:23/255.0 green:180/255.0 blue:237/255.0 alpha:1]];
  [[uinavigationbar appearance] setbarstyle:uibarstyleblack];
  
  kcmainviewcontroller *maincontroller=[[kcmainviewcontroller alloc]init];
  _window.rootviewcontroller=maincontroller;
  
  [_window makekeyandvisible];

  //如果已经获得发送通知的授权则创建本地通知,否则请求授权(注意:如果不请求授权在设置中是没有对应的通知设置项的,也就是说如果从来没有发送过请求,即使通过设置也打不开消息允许设置)
  if ([[uiapplication sharedapplication]currentusernotificationsettings].types!=uiusernotificationtypenone) {
    [self addlocalnotification];
  }else{
    [[uiapplication sharedapplication]registerusernotificationsettings:[uiusernotificationsettings settingsfortypes:uiusernotificationtypealert|uiusernotificationtypebadge|uiusernotificationtypesound categories:nil]];
  }
  
  return yes;
}

#pragma mark 调用过用户注册通知方法之后执行(也就是调用完registerusernotificationsettings:方法之后执行)
-(void)application:(uiapplication *)application didregisterusernotificationsettings:(uiusernotificationsettings *)notificationsettings{
  if (notificationsettings.types!=uiusernotificationtypenone) {
    [self addlocalnotification];
  }
}

#pragma mark 进入前台后设置消息信息
-(void)applicationwillenterforeground:(uiapplication *)application{
  [[uiapplication sharedapplication]setapplicationiconbadgenumber:0];//进入前台取消应用消息图标
}

#pragma mark - 私有方法
#pragma mark 添加本地通知
-(void)addlocalnotification{
  
  //定义本地通知对象
  uilocalnotification *notification=[[uilocalnotification alloc]init];
  //设置调用时间
  notification.firedate=[nsdate datewithtimeintervalsincenow:10.0];//通知触发的时间,10s以后
  notification.repeatinterval=2;//通知重复次数
  //notification.repeatcalendar=[nscalendar currentcalendar];//当前日历,使用前最好设置时区等信息以便能够自动同步时间
  
  //设置通知属性
  notification.alertbody=@"最近添加了诸多有趣的特性,是否立即体验?"; //通知主体
  notification.applicationiconbadgenumber=1;//应用程序图标右上角显示的消息数
  notification.alertaction=@"打开应用"; //待机界面的滑动动作提示
  notification.alertlaunchimage=@"default";//通过点击通知打开应用时的启动图片,这里使用程序启动图片
  //notification.soundname=uilocalnotificationdefaultsoundname;//收到通知时播放的声音,默认消息声音
  notification.soundname=@"msg.caf";//通知声音(需要真机才能听到声音)
  
  //设置用户信息
  notification.userinfo=@{@"id":@1,@"user":@"kenshin cui"};//绑定到通知上的其他附加信息
  
  //调用通知
  [[uiapplication sharedapplication] schedulelocalnotification:notification];
}

#pragma mark 移除本地通知,在不需要此通知时记得移除
-(void)removenotification{
  [[uiapplication sharedapplication] cancelalllocalnotifications];
}
@end

请求获得用户允许通知的效果:
iOS开发系列--通知与消息机制详解
应用退出到后弹出通知的效果:
iOS开发系列--通知与消息机制详解
锁屏状态下的通知效果(从这个界面可以看到alertaction配置为“打开应用”):iOS开发系列--通知与消息机制详解

注意:

  • 在使用通知之前必须注册通知类型,如果用户不允许应用程序发送通知,则以后就无法发送通知,除非用户手动到ios设置中打开通知。
  • 本地通知是有操作系统统一调度的,只有在应用退出到后台或者关闭才能收到通知。(注意:这一点对于后面的推送通知也是完全适用的。 )
  • 通知的声音是由ios系统播放的,格式必须是linear pcm、ma4(ima/adpcm)、µlaw、alaw中的一种,并且播放时间必须在30s内,否则将被系统声音替换,同时自定义声音文件必须放到main boundle中。
  • 本地通知的数量是有限制的,最近的本地通知最多只能有64个,超过这个数量将被系统忽略。
  • 如果想要移除本地通知可以调用uiapplication的cancellocalnotification:或cancelalllocalnotifications移除指定通知或所有通知。

从上面的程序可以看到userinfo这个属性我们设置了参数,那么这个参数如何接收呢?

在ios中如果点击一个弹出通知(或者锁屏界面滑动查看通知),默认会自动打开当前应用。由于通知由系统调度那么此时进入应用有两种情况:如果应用程序已经完全退出那么此时会调用- (bool)application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions方法;如果此时应用程序还在运行(无论是在前台还是在后台)则会调用-(void)application:(uiapplication *)application didreceivelocalnotification:(uilocalnotification *)notification方法接收消息参数。当然如果是后者自然不必多说,因为参数中已经可以拿到notification对象,只要读取userinfo属性即可。如果是前者的话则可以访问launchoptions中键为uiapplicationlaunchoptionslocalnotificationkey的对象,这个对象就是发送的通知,由此对象再去访问userinfo。为了演示这个过程在下面的程序中将userinfo的内容写入文件以便模拟关闭程序后再通过点击通知打开应用获取userinfo的过程。

appdelegate.m

//
// appdelegate.m
// localnotification
//
// created by kenshin cui on 14/03/28.
// copyright (c) 2014年 kenshin cui. all rights reserved.
//

#import "appdelegate.h"
#import "kcmainviewcontroller.h"

@interface appdelegate ()

@end

@implementation appdelegate

#pragma mark - 应用代理方法
- (bool)application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions {
  
  _window=[[uiwindow alloc]initwithframe:[uiscreen mainscreen].bounds];
  
  _window.backgroundcolor =[uicolor colorwithred:249/255.0 green:249/255.0 blue:249/255.0 alpha:1];
  
  //设置全局导航条风格和颜色
  [[uinavigationbar appearance] setbartintcolor:[uicolor colorwithred:23/255.0 green:180/255.0 blue:237/255.0 alpha:1]];
  [[uinavigationbar appearance] setbarstyle:uibarstyleblack];
  
  kcmainviewcontroller *maincontroller=[[kcmainviewcontroller alloc]init];
  _window.rootviewcontroller=maincontroller;
  
  [_window makekeyandvisible];

  //添加通知
  [self addlocalnotification];

  //接收通知参数
  uilocalnotification *notification=[launchoptions valueforkey:uiapplicationlaunchoptionslocalnotificationkey];
  nsdictionary *userinfo= notification.userinfo;
  
  [userinfo writetofile:@"/users/kenshincui/desktop/didfinishlaunchingwithoptions.txt" atomically:yes];
  nslog(@"didfinishlaunchingwithoptions:the userinfo is %@.",userinfo);
  
  return yes;
}

#pragma mark 接收本地通知时触发
-(void)application:(uiapplication *)application didreceivelocalnotification:(uilocalnotification *)notification{
  nsdictionary *userinfo=notification.userinfo;
  [userinfo writetofile:@"/users/kenshincui/desktop/didreceivelocalnotification.txt" atomically:yes];
  nslog(@"didreceivelocalnotification:the userinfo is %@",userinfo);
}

#pragma mark 调用过用户注册通知方法之后执行(也就是调用完registerusernotificationsettings:方法之后执行)
-(void)application:(uiapplication *)application didregisterusernotificationsettings:(uiusernotificationsettings *)notificationsettings{
  if (notificationsettings.types!=uiusernotificationtypenone) {
    [self addlocalnotification];
  }
}

#pragma mark 进入前台后设置消息信息
-(void)applicationwillenterforeground:(uiapplication *)application{
  [[uiapplication sharedapplication]setapplicationiconbadgenumber:0];//进入前台取消应用消息图标
}

#pragma mark - 私有方法
#pragma mark 添加本地通知
-(void)addlocalnotification{
  
  //定义本地通知对象
  uilocalnotification *notification=[[uilocalnotification alloc]init];
  //设置调用时间
  notification.firedate=[nsdate datewithtimeintervalsincenow:10.0];//通知触发的时间,10s以后
  notification.repeatinterval=2;//通知重复次数
  //notification.repeatcalendar=[nscalendar currentcalendar];//当前日历,使用前最好设置时区等信息以便能够自动同步时间
  
  //设置通知属性
  notification.alertbody=@"最近添加了诸多有趣的特性,是否立即体验?"; //通知主体
  notification.applicationiconbadgenumber=1;//应用程序图标右上角显示的消息数
  notification.alertaction=@"打开应用"; //待机界面的滑动动作提示
  notification.alertlaunchimage=@"default";//通过点击通知打开应用时的启动图片
  //notification.soundname=uilocalnotificationdefaultsoundname;//收到通知时播放的声音,默认消息声音
  notification.soundname=@"msg.caf";//通知声音(需要真机)
  
  //设置用户信息
  notification.userinfo=@{@"id":@1,@"user":@"kenshin cui"};//绑定到通知上的其他额外信息
  
  //调用通知
  [[uiapplication sharedapplication] schedulelocalnotification:notification];
}
@end

上面的程序可以分为两种情况去运行:一种是启动程序关闭程序,等到接收到通知之后点击通知重新进入程序;另一种是启动程序后,进入后台(其实在前台也可以,但是为了明显的体验这个过程建议进入后台),接收到通知后点击通知进入应用。另种情况会分别按照前面说的情况调用不同的方法接收到userinfo写入本地文件系统。有了userinfo一般来说就可以根据这个信息进行一些处理,例如可以根据不同的参数信息导航到不同的界面,假设是更新的通知则可以导航到更新内容界面等。

推送通知

和本地通知不同,推送通知是由应用服务提供商发起的,通过苹果的apns(apple push notification server)发送到应用客户端。下面是苹果官方关于推送通知的过程示意图:
iOS开发系列--通知与消息机制详解推送通知的过程可以分为以下几步:

  1. 应用服务提供商从服务器端把要发送的消息和设备令牌(device token)发送给苹果的消息推送服务器apns。
  2. apns根据设备令牌在已注册的设备(iphone、ipad、itouch、mac等)查找对应的设备,将消息发送给相应的设备。
  3. 客户端设备接将接收到的消息传递给相应的应用程序,应用程序根据用户设置弹出通知消息。

当然,这只是一个简单的流程,有了这个流程我们还无从下手编写程序,将上面的流程细化可以得到如下流程图(图片来自互联网),在这个过程中会也会提到如何在程序中完成这些步骤:iOS开发系列--通知与消息机制详解

1.应用程序注册apns推送消息。

说明:

a.只有注册过的应用才有可能接收到消息,程序中通常通过uiapplication的registerusernotificationsettings:方法注册,ios8中通知注册的方法发生了改变,如果是ios7及之前版本的ios请参考其他代码。

b.注册之前有两个前提条件必须准备好:开发配置文件(provisioning profile,也就是.mobileprovision后缀的文件)的app id不能使用通配id必须使用指定app id并且生成配置文件中选择push notifications服务,一般的开发配置文件无法完成注册;应用程序的bundle identifier必须和生成配置文件使用的app id完全一致。

2.ios从apns接收device token,在应用程序获取device token。

说明:

a.在uiapplication的-(void)application:(uiapplication *)application didregisterforremotenotificationswithdevicetoken:(nsdata *)devicetoken代理方法中获取令牌,此方法发生在注册之后。

b.如果无法正确获得device token可以在uiapplication的-(void)application:(uiapplication *)application didfailtoregisterforremotenotificationswitherror:(nserror *)error代理方法中查看详细错误信息,此方法发生在获取device token失败之后。

c.必须真机调试,模拟器无法获取device token。

3.ios应用将device token发送给应用程序提供商,告诉服务器端当前设备允许接收消息。

说明:

a.device token的生成算法只有apple掌握,为了确保算法发生变化后仍然能够正常接收服务器端发送的通知,每次应用程序启动都重新获得device token(注意:device token的获取不会造成性能问题,苹果官方已经做过优化)。

b.通常可以创建一个网络连接发送给应用程序提供商的服务器端, 在这个过程中最好将上一次获得的device token存储起来,避免重复发送,一旦发现device token发生了变化最好将原有的device token一块发送给服务器端,服务器端删除原有令牌存储新令牌避免服务器端发送无效消息。

4.应用程序提供商在服务器端根据前面发送过来的device token组织信息发送给apns。

说明:

a.发送时指定device token和消息内容,并且完全按照苹果官方的消息格式组织消息内容,通常情况下可以借助其他第三方消息推送框架来完成。

5.apns根据消息中的device token查找已注册的设备推送消息。

说明:

a.正常情况下可以根据device token将消息成功推送到客户端设备中,但是也不排除用户卸载程序的情况,此时推送消息失败,apns会将这个错误消息通知服务器端以避免资源浪费(服务器端此时可以根据错误删除已经存储的device token,下次不再发送)。

下面将简单演示一下推送通知的简单流程:

首先,看一下ios客户端代码:

//
// appdelegate.m
// pushnotification
//
// created by kenshin cui on 14/03/27.
// copyright (c) 2014年 kenshin cui. all rights reserved.
//

#import "appdelegate.h"
#import "kcmainviewcontroller.h"

@interface appdelegate ()

@end

@implementation appdelegate

#pragma mark - 应用程序代理方法
#pragma mark 应用程序启动之后
- (bool)application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions {
  
  _window=[[uiwindow alloc]initwithframe:[uiscreen mainscreen].bounds];
  
  _window.backgroundcolor =[uicolor colorwithred:249/255.0 green:249/255.0 blue:249/255.0 alpha:1];
  
  //设置全局导航条风格和颜色
  [[uinavigationbar appearance] setbartintcolor:[uicolor colorwithred:23/255.0 green:180/255.0 blue:237/255.0 alpha:1]];
  [[uinavigationbar appearance] setbarstyle:uibarstyleblack];
  
  kcmainviewcontroller *maincontroller=[[kcmainviewcontroller alloc]init];
  _window.rootviewcontroller=maincontroller;
  
  [_window makekeyandvisible];
  
  //注册推送通知(注意ios8注册方法发生了变化)
  [application registerusernotificationsettings:[uiusernotificationsettings settingsfortypes:uiusernotificationtypealert|uiusernotificationtypebadge|uiusernotificationtypesound categories:nil]];
  [application registerforremotenotifications];
  
  return yes;
}
#pragma mark 注册推送通知之后
//在此接收设备令牌
-(void)application:(uiapplication *)application didregisterforremotenotificationswithdevicetoken:(nsdata *)devicetoken{
  [self adddevicetoken:devicetoken];
  nslog(@"device token:%@",devicetoken);
}

#pragma mark 获取device token失败后
-(void)application:(uiapplication *)application didfailtoregisterforremotenotificationswitherror:(nserror *)error{
  nslog(@"didfailtoregisterforremotenotificationswitherror:%@",error.localizeddescription);
  [self adddevicetoken:nil];
}

#pragma mark 接收到推送通知之后
-(void)application:(uiapplication *)application didreceiveremotenotification:(nsdictionary *)userinfo{
  nslog(@"receiveremotenotification,userinfo is %@",userinfo);
}

#pragma mark - 私有方法
/**
 * 添加设备令牌到服务器端
 *
 * @param devicetoken 设备令牌
 */
-(void)adddevicetoken:(nsdata *)devicetoken{
  nsstring *key=@"devicetoken";
  nsdata *oldtoken= [[nsuserdefaults standarduserdefaults]objectforkey:key];
  //如果偏好设置中的已存储设备令牌和新获取的令牌不同则存储新令牌并且发送给服务器端
  if (![oldtoken isequaltodata:devicetoken]) {
    [[nsuserdefaults standarduserdefaults] setobject:devicetoken forkey:key];
    [self senddevicetokenwidtholddevicetoken:oldtoken newdevicetoken:devicetoken];
  }
}

-(void)senddevicetokenwidtholddevicetoken:(nsdata *)oldtoken newdevicetoken:(nsdata *)newtoken{
  //注意一定确保真机可以正常访问下面的地址
  nsstring *urlstr=@"http://192.168.1.101/registerdevicetoken.aspx";
  urlstr=[urlstr stringbyaddingpercentescapesusingencoding:nsutf8stringencoding];
  nsurl *url=[nsurl urlwithstring:urlstr];
  nsmutableurlrequest *requestm=[nsmutableurlrequest requestwithurl:url cachepolicy:0 timeoutinterval:10.0];
  [requestm sethttpmethod:@"post"];
  nsstring *bodystr=[nsstring stringwithformat:@"oldtoken=%@&newtoken=%@",oldtoken,newtoken];
  nsdata *body=[bodystr datausingencoding:nsutf8stringencoding];
  [requestm sethttpbody:body];
  nsurlsession *session=[nsurlsession sharedsession];
  nsurlsessiondatatask *datatask= [session datataskwithrequest:requestm completionhandler:^(nsdata *data, nsurlresponse *response, nserror *error) {
    if (error) {
      nslog(@"send failure,error is :%@",error.localizeddescription);
    }else{
      nslog(@"send success!");
    }
    
  }];
  [datatask resume];
}
@end

ios客户端代码的代码比较简单,注册推送通知,获取device token存储到偏好设置中,并且如果新获取的device token不同于偏好设置中存储的数据则发送给服务器端,更新服务器端device token列表。

其次,由于device token需要发送给服务器端,这里使用一个web应用作为服务器端接收device token,这里使用了asp.net程序来处理令牌接收注册工作,当然你使用其他技术同样没有问题。下面是对应的后台代码:

using system;
using system.collections.generic;
using system.web;
using system.web.ui;
using system.web.ui.webcontrols;
using cmj.framework.data;

namespace webserver
{
  public partial class registerdevicetoken : system.web.ui.page
  {
    private string _appid = @"com.cmjstudio.pushnotification";
    private sqlhelper _helper = new sqlhelper();
    protected void page_load(object sender, eventargs e)
    {
      try
      {
        string oldtoken = request["oldtoken"] + "";
        string newtoken = request["newtoken"] + "";
        string sql = "";
        //如果传递旧的设备令牌则删除旧令牌添加新令牌
        if (oldtoken != "")
        {
          sql = string.format("delete from dbo.device where appid='{0}' and devicetoken='{1}';", _appid, oldtoken);
        }
        sql += string.format(@"if not exists (select id from dbo.device where appid='{0}' and devicetoken='{1}')
                    insert into dbo.device ( appid, devicetoken ) values ( n'{0}', n'{1}');", _appid, newtoken);
        _helper.executenonquery(sql);
        response.write("注册成功!");
      }
      catch(exception ex)
      {
        response.write("注册失败,错误详情:"+ex.tostring());
      }
    }
  }
}

这个过程主要就是保存device token到数据库中,当然如果同时传递旧的设备令牌还需要先删除就的设备令牌,这里简单的在数据库中创建了一张device表来保存设备令牌,其中记录了应用程序id和设备令牌。

第三步就是服务器端发送消息,如果要给apns发送消息就必须按照apple的标准消息格式组织消息内容。但是好在目前已经有很多开源的第三方类库供我们使用,具体消息如何包装完全不用自己组织,这里使用一个开源的类库push sharp来给apns发送消息 ,除了可以给apple设备推送消息,push sharp还支持android、windows phone等多种设备,更多详细内容大家可以参照官方说明。前面说过如果要开发消息推送应用不能使用一般的开发配置文件,这里还需要注意:如果服务器端要给apns发送消息其秘钥也必须是通过apns development ios类型的证书来导出的,一般的ios development 类型的证书导出的秘钥无法用作服务器端发送秘钥。下面通过在一个简单的winform程序中调用push sharp给apns发送消息,这里读取之前device表中的所有设备令牌循环发送消息:

using system;
using system.io;
using system.collections.generic;
using system.componentmodel;
using system.data;
using system.drawing;
using system.text;
using system.windows.forms;
using pushsharp;
using pushsharp.apple;
using cmj.framework.data;
using cmj.framework.logging;
using cmj.framework.windows.forms;

namespace pushnotificationserver
{
  public partial class frmmain : personalizeform
  {
    private string _appid = @"com.cmjstudio.pushnotification";
    private sqlhelper _helper = new sqlhelper();
    public frmmain()
    {
      initializecomponent();
    }

    private void btnclose_click(object sender, eventargs e)
    {
      this.close();
    }

    private void btnsend_click(object sender, eventargs e)
    {
      list<string> devicetokens = getdevicetoken();
      sendmessage(devicetokens, tbmessage.text);
    }

    #region 发送消息
    /// <summary>
    /// 取得所有设备令牌
    /// </summary>
    /// <returns>设备令牌</returns>
    private list<string> getdevicetoken()
    {
      list<string> devicetokens = new list<string>();
      string sql = string.format("select devicetoken from dbo.device where appid='{0}'",_appid);
      datatable dt = _helper.getdatatable(sql);
      if(dt.rows.count>0)
      {
        foreach(datarow dr in dt.rows)
        {
          devicetokens.add((dr["devicetoken"]+"").trimstart('<').trimend('>').replace(" ",""));
        }
      }
      return devicetokens;
    }
    
    /// <summary>
    /// 发送消息
    /// </summary>
    /// <param name="devicetoken">设备令牌</param>
    /// <param name="message">消息内容</param>
    private void sendmessage(list<string> devicetoken, string message)
    {
      //创建推送对象
      var pusher = new pushbroker();
      pusher.onnotificationsent += pusher_onnotificationsent;//发送成功事件
      pusher.onnotificationfailed += pusher_onnotificationfailed;//发送失败事件
      pusher.onchannelcreated += pusher_onchannelcreated;
      pusher.onchanneldestroyed += pusher_onchanneldestroyed;
      pusher.onchannelexception += pusher_onchannelexception;
      pusher.ondevicesubscriptionchanged += pusher_ondevicesubscriptionchanged;
      pusher.ondevicesubscriptionexpired += pusher_ondevicesubscriptionexpired;
      pusher.onnotificationrequeue += pusher_onnotificationrequeue;
      pusher.onserviceexception += pusher_onserviceexception;
      //注册推送服务
      byte[] certificatedata = file.readallbytes(@"e:\kenshincui_push.p12");
      pusher.registerappleservice(new applepushchannelsettings(certificatedata, "123"));
      foreach (string token in devicetoken)
      {
        //给指定设备发送消息
        pusher.queuenotification(new applenotification()
          .fordevicetoken(token)
          .withalert(message) 
          .withbadge(1)
          .withsound("default"));
      }
    }

    void pusher_onserviceexception(object sender, exception error)
    {
      console.writeline("消息发送失败,错误详情:" + error.tostring());
      personalizemessagebox.show(this, "消息发送失败,错误详情:" + error.tostring(), "系统提示");
    }

    void pusher_onnotificationrequeue(object sender, pushsharp.core.notificationrequeueeventargs e)
    {
      console.writeline("pusher_onnotificationrequeue");
    }

    void pusher_ondevicesubscriptionexpired(object sender, string expiredsubscriptionid, datetime expirationdateutc, pushsharp.core.inotification notification)
    {
      console.writeline("pusher_ondevicesubscriptionchanged");
    }

    void pusher_ondevicesubscriptionchanged(object sender, string oldsubscriptionid, string newsubscriptionid, pushsharp.core.inotification notification)
    {
      console.writeline("pusher_ondevicesubscriptionchanged");
    }

    void pusher_onchannelexception(object sender, pushsharp.core.ipushchannel pushchannel, exception error)
    {
      console.writeline("消息发送失败,错误详情:" + error.tostring());
      personalizemessagebox.show(this, "消息发送失败,错误详情:" + error.tostring(), "系统提示");
    }

    void pusher_onchanneldestroyed(object sender)
    {
      console.writeline("pusher_onchanneldestroyed");
    }

    void pusher_onchannelcreated(object sender, pushsharp.core.ipushchannel pushchannel)
    {
      console.writeline("pusher_onchannelcreated");
    }

    void pusher_onnotificationfailed(object sender, pushsharp.core.inotification notification, exception error)
    {
      console.writeline("消息发送失败,错误详情:" + error.tostring());
      personalizemessagebox.show(this, "消息发送失败,错误详情:"+error.tostring(), "系统提示");
    }

    void pusher_onnotificationsent(object sender, pushsharp.core.inotification notification)
    {
      console.writeline("消息发送成功!");
      personalizemessagebox.show(this, "消息发送成功!", "系统提示");
    }
    #endregion
  }
}

服务器端消息发送应用运行效果:
iOS开发系列--通知与消息机制详解
ios客户端接收的消息的效果:
iOS开发系列--通知与消息机制详解
到目前为止通过服务器端应用可以顺利发送消息给apns并且ios应用已经成功接收推送消息。

补充--ios开发证书、秘钥

ios开发过程中如果需要进行真机调试、发布需要注册申请很多证书,对于初学者往往迷惑不解,再加上今天的文章中会牵扯到一些特殊配置,这里就简单的对ios开发的常用证书和秘钥等做一说明。

证书

ios常用的证书包括开发证书和发布证书,无论是真机调试还是最终发布应用到app store这两个证书都是必须的,它是ios开发的基本证书。

a.开发证书:开发证书又分为普通开发证书和推送证书,如果仅仅是一般的应用则前者即可满足,但是如果开发推送应用则必须使用推送证书。

b.发布证书:发布证书又可以分为普通发布证书、推送证书、pass type id证书、站点发布证书、voip服务证书、苹果支付证书。同样的,对于需要使用特殊服务的应用则必须选择对应的证书。

应用标识

app id,应用程序的唯一标识,对应ios应用的bundle identifier,app id在苹果开发者中心中分为通配应用id和明确的应用id,前者一般用于普通应用开发,一个id可以适用于多个不同标识的应用;但是对于使用消息推送、passbook、站点发布、icloud等服务的应用必须配置明确的应用id。

设备标识

udid,用于标识每一台硬件设备的标示符。注意它不是device token,device token是根据udid使用一个只有apple自己才知道的算法生成的一组标示符。

配置简介

provisioning profiles,平时又称为pp文件。将udid、app id、开发证书打包在一起的配置文件,同样分为开发和发布两类配置文件。

秘钥

在申请开发证书时必须要首先提交一个秘钥请求文件,对于生成秘钥请求文件的mac,如果要做开发则只需要下载证书和配置简介即可开发。但是如果要想在其他机器上做开发则必须将证书中的秘钥导出(导出之后是一个.p12文件),然后导入其他机器。同时对于类似于推送服务器端应用如果要给apns发送消息,同样需要使用.p12秘钥文件,并且这个秘钥文件需要是推送证书导出的对应秘钥。

补充--通知中心

对于很多初学者往往会把ios中的本地通知、推送通知和ios通知中心的概念弄混。其实二者之间并没有任何关系,事实上它们都不属于一个框架,前者属于uikit框架,后者属于foundation框架。

通知中心实际上是ios程序内部之间的一种消息广播机制,主要为了解决应用程序内部不同对象之间解耦而设计。它是基于观察者模式设计的,不能跨应用程序进程通信,当通知中心接收到消息之后会根据内部的消息转发表,将消息发送给订阅者。下面是一个简单的流程示意图:iOS开发系列--通知与消息机制详解
了解通知中心需要熟悉nsnotificationcenter和nsnotification两个类:

nsnotificationcenter:是通知系统的中心,用于注册和发送通知,下表列出常用的方法。

方法 说明
- (void)addobserver:(id)observer selector:(sel)aselector name:(nsstring *)aname object:(id)anobject 添加监听,参数:
observer:监听者
selector:监听方法(监听者监听到通知后执行的方法)
  name:监听的通知名称
object:通知的发送者(如果指定nil则监听任何对象发送的通知)
- (id <nsobject>)addobserverforname:(nsstring *)name object:(id)obj queue:(nsoperationqueue *)queue usingblock:(void (^)(nsnotification *note))block 添加监听,参数:
name:监听的通知名称
object:通知的发送者(如果指定nil则监听任何对象发送的通知)
queue:操作队列,如果制定非主队线程队列则可以异步执行block
block:监听到通知后执行的操作
- (void)postnotification:(nsnotification *)notification 发送通知,参数:
notification:通知对象
- (void)postnotificationname:(nsstring *)aname object:(id)anobject 发送通知,参数:
aname:通知名称
anobject:通知发送者
- (void)postnotificationname:(nsstring *)aname object:(id)anobject userinfo:(nsdictionary *)auserinfo 发送通知,参数:
aname:通知名称
anobject:通知发送者
auserinfo:通知参数
- (void)removeobserver:(id)observer 移除监听,参数:
observer:监听对象
- (void)removeobserver:(id)observer name:(nsstring *)aname object:(id)anobject 移除监听,参数:
observer:监听对象
aname:通知名称
anobject:通知发送者

nsnotification:代表通知内容的载体,主要有三个属性:name代表通知名称,object代表通知的发送者,userinfo代表通知的附加信息。

虽然前面的文章中从未提到过通知中心,但是其实通知中心我们并不陌生,前面文章中很多内容都是通过通知中心来进行应用中各个组件通信的,只是没有单独拿出来说而已。例如前面的文章中讨论的应用程序生命周期问题,当应用程序启动后、进入后台、进入前台、获得焦点、失去焦点,窗口大小改变、隐藏等都会发送通知。这个通知可以通过前面nsnotificationcenter进行订阅即可接收对应的消息,下面的示例演示了如何添加监听获得uiapplication的进入后台和获得焦点的通知:

//
// kcmainviewcontroller.m
// notificationcenter
//
// created by kenshin cui on 14/03/27.
// copyright (c) 2014年 cmjstudio. all rights reserved.
//

#import "kcmainviewcontroller.h"

@interface kcmainviewcontroller ()

@end

@implementation kcmainviewcontroller

- (void)viewdidload {
  [super viewdidload];
  
  [self addobservertonotificationcenter];
  
}

#pragma mark 添加监听
-(void)addobservertonotificationcenter{
  /*添加应用程序进入后台监听
   * observer:监听者
   * selector:监听方法(监听者监听到通知后执行的方法)
   * name:监听的通知名称(下面的uiapplicationdidenterbackgroundnotification是一个常量)
   * object:通知的发送者(如果指定nil则监听任何对象发送的通知)
   */
  [[nsnotificationcenter defaultcenter] addobserver:self selector:@selector(applicationenterbackground) name:uiapplicationdidenterbackgroundnotification object:[uiapplication sharedapplication]];
  
  /* 添加应用程序获得焦点的通知监听
   * name:监听的通知名称
   * object:通知的发送者(如果指定nil则监听任何对象发送的通知)
   * queue:操作队列,如果制定非主队线程队列则可以异步执行block
   * block:监听到通知后执行的操作
   */
  nsoperationqueue *operationqueue=[[nsoperationqueue alloc]init];
  [[nsnotificationcenter defaultcenter] addobserverforname:uiapplicationdidbecomeactivenotification object:[uiapplication sharedapplication] queue:operationqueue usingblock:^(nsnotification *note) {
    nslog(@"application become active.");
  }];
}

#pragma mark 应用程序启动监听方法
-(void)applicationenterbackground{
  nslog(@"application enter background.");
}
@end

当然很多时候使用通知中心是为了添加自定义通知,并获得自定义通知消息。在前面的文章“ios开发系列--视图切换”中提到过如何进行多视图之间参数传递,其实利用自定义通知也可以进行参数传递。通常一个应用登录后会显示用户信息,而登录信息可以通过登录界面获取。下面就以这样一种场景为例,在主界面中添加监听,在登录界面发送通知,一旦登录成功将向通知中心发送成功登录的通知,此时主界面中由于已经添加通知监听所以会收到通知并更新ui界面。

主界面kcmainviewcontroller.m:

//
// kcmainviewcontroller.m
// notificationcenter
//
// created by kenshin cui on 14/03/27
// copyright (c) 2014年 cmjstudio. all rights reserved.
//

#import "kcmainviewcontroller.h"
#import "kcloginviewcontroller.h"
#define update_lgogin_info_notification @"updatelogininfo"

@interface kcmainviewcontroller (){
  uilabel *_lblogininfo;
  uibutton *_btnlogin;
}

@end

@implementation kcmainviewcontroller

- (void)viewdidload {
  [super viewdidload];
  
  [self setupui];
}

-(void)setupui{
  uilabel *label =[[uilabel alloc]initwithframe:cgrectmake(0, 100,320 ,30)];
  label.textalignment=nstextalignmentcenter;
  label.textcolor=[uicolor colorwithred:23/255.0 green:180/255.0 blue:237/255.0 alpha:1];
  _lblogininfo=label;
  [self.view addsubview:label];
  
  uibutton *button=[uibutton buttonwithtype:uibuttontypesystem];
  button.frame=cgrectmake(60, 200, 200, 25);
  [button settitle:@"登录" forstate:uicontrolstatenormal];
  [button addtarget:self action:@selector(loginout) forcontrolevents:uicontroleventtouchupinside];
  _btnlogin=button;
  
  [self.view addsubview:button];
}

-(void)loginout{
  //添加监听
  [self addobservertonotification];
  
  kcloginviewcontroller *logincontroller=[[kcloginviewcontroller alloc]init];
  
  [self presentviewcontroller:logincontroller animated:yes completion:nil];
}

/**
 * 添加监听
 */
-(void)addobservertonotification{
  [[nsnotificationcenter defaultcenter] addobserver:self selector:@selector(updatelogininfo:) name:update_lgogin_info_notification object:nil];
}

/**
 * 更新登录信息,注意在这里可以获得通知对象并且读取附加信息
 */
-(void)updatelogininfo:(nsnotification *)notification{
  nsdictionary *userinfo=notification.userinfo;
  _lblogininfo.text=userinfo[@"logininfo"];
  _btnlogin.titlelabel.text=@"注销";
}

-(void)dealloc{
  //移除监听
  [[nsnotificationcenter defaultcenter] removeobserver:self];
}
@end
登录界面kcloginviewcontroller.m:

//
// kcloginviewcontroller.m
// notificationcenter
//
// created by kenshin cui on 14/03/27.
// copyright (c) 2014年 cmjstudio. all rights reserved.
//

#import "kcloginviewcontroller.h"
#define update_lgogin_info_notification @"updatelogininfo"

@interface kcloginviewcontroller (){
  uitextfield *_txtusername;
  uitextfield *_txtpassword;
}

@end

@implementation kcloginviewcontroller

- (void)viewdidload {
  [super viewdidload];
  
  [self setupui];
}

/**
 * ui布局
 */
-(void)setupui{
  //用户名
  uilabel *lbusername=[[uilabel alloc]initwithframe:cgrectmake(50, 150, 100, 30)];
  lbusername.text=@"用户名:";
  [self.view addsubview:lbusername];
  
  _txtusername=[[uitextfield alloc]initwithframe:cgrectmake(120, 150, 150, 30)];
  _txtusername.borderstyle=uitextborderstyleroundedrect;
  [self.view addsubview:_txtusername];
  
  //密码
  uilabel *lbpassword=[[uilabel alloc]initwithframe:cgrectmake(50, 200, 100, 30)];
  lbpassword.text=@"密码:";
  [self.view addsubview:lbpassword];
  
  _txtpassword=[[uitextfield alloc]initwithframe:cgrectmake(120, 200, 150, 30)];
  _txtpassword.securetextentry=yes;
  _txtpassword.borderstyle=uitextborderstyleroundedrect;
  [self.view addsubview:_txtpassword];
  
  //登录按钮
  uibutton *btnlogin=[uibutton buttonwithtype:uibuttontypesystem];
  btnlogin.frame=cgrectmake(70, 270, 80, 30);
  [btnlogin settitle:@"登录" forstate:uicontrolstatenormal];
  [self.view addsubview:btnlogin];
  [btnlogin addtarget:self action:@selector(login) forcontrolevents:uicontroleventtouchupinside];
  
  //取消登录按钮
  uibutton *btncancel=[uibutton buttonwithtype:uibuttontypesystem];
  btncancel.frame=cgrectmake(170, 270, 80, 30);
  [btncancel settitle:@"取消" forstate:uicontrolstatenormal];
  [self.view addsubview:btncancel];
  [btncancel addtarget:self action:@selector(cancel) forcontrolevents:uicontroleventtouchupinside];
}

#pragma mark 登录操作
-(void)login{
  if ([_txtusername.text isequaltostring:@"kenshincui"] && [_txtpassword.text isequaltostring:@"123"] ) {
    //发送通知
    [self postnotification];
    [self dismissviewcontrolleranimated:yes completion:nil];
  }else{
    //登录失败弹出提示信息
    uialertview *alertview=[[uialertview alloc]initwithtitle:@"系统信息" message:@"用户名或密码错误,请重新输入!" delegate:nil cancelbuttontitle:@"取消" otherbuttontitles:nil];
    [alertview show];
  }
  
}

#pragma mark 点击取消
-(void)cancel{
  [self dismissviewcontrolleranimated:yes completion:nil];
}

/**
 * 添加通知,注意这里设置了附加信息
 */
-(void)postnotification{
  nsdictionary *userinfo=@{@"logininfo":[nsstring stringwithformat:@"hello,%@!",_txtusername.text]};
  nslog(@"%@",userinfo);
  nsnotification *notification=[nsnotification notificationwithname:update_lgogin_info_notification object:self userinfo:userinfo];
  [[nsnotificationcenter defaultcenter] postnotification:notification];
//也可直接采用下面的方法
//  [[nsnotificationcenter defaultcenter] postnotificationname:update_lgogin_info_notification object:self userinfo:userinfo];

}
@end

运行效果:
iOS开发系列--通知与消息机制详解

注意:

通过上面的介绍大家应该可以发现其实通知中心是一种低耦合设计,和前面文章中提到的代理模式有异曲同工之妙。相对于后者而言,通知中心可以将一个通知发送给多个监听者,而每个对象的代理却只能有一个。当然代理也有其优点,例如使用代理代码分布结构更加清晰,它不像通知一样随处都可以添加订阅等,实际使用过程中需要根据实际情况而定。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

上一篇:

下一篇: