摘要: static File *instance = nil;@implementation File//得到单例的方法+ (id)shareInstance{ @synchronized (self) { if (instance == nil) { instance = [[Fil... 阅读全文
posted @ 2015-11-08 22:32 遛遛弯的蜗牛 阅读(75) 评论(0) 推荐(0) 编辑
摘要: • •• • •远程消息注册 //注册远程消息推送[applica-on registerForRemoteNo-fica-onTypes:UIRemoteNo-fica-onTypeAlert| UIRemoteNo-fica-onTypeBadge| UIRemoteNo-fica-onType... 阅读全文
posted @ 2015-11-08 18:42 遛遛弯的蜗牛 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 实现消息推送的步骤1、注册:为应用程序申请消息推送服务。此时你的设备会向APNs服务器发送注册请求。 2、APNs服务器接收请求,并将deviceToken返给你设备上的应用程序 3、客户端应用程序将deviceToken发送给后台服务器程序,后台接收并储存。 4、后台服务器向APNs服务器发送推送... 阅读全文
posted @ 2015-11-08 18:39 遛遛弯的蜗牛 阅读(184) 评论(0) 推荐(0) 编辑