博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IOS消息推送
阅读量:6206 次
发布时间:2019-06-21

本文共 1198 字,大约阅读时间需要 3 分钟。

[[UIApplication sharedApplication] registerForRemoteNotificationTypes:     (UIRemoteNotificationType)(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];
- (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken{        NSLog(@"My token is: %@", deviceToken);    NSString *devID= [[NSString alloc]initWithFormat:@"%@", deviceToken];    [g_soap SetDeviceId:devID];    }- (void)application:(UIApplication*)application didFailToRegisterForRemoteNotificationsWithError:(NSError*)error{    NSLog(@"Failed to get token, error: %@", error);}//处理收到的消息推送- (void)application:(UIApplication *)applicationdidReceiveRemoteNotification:(NSDictionary *)userInfo{    NSLog(@"Receive remote notification : %@",userInfo);    UIAlertView *alert =    [[UIAlertView alloc] initWithTitle:@"温馨提示"                               message:[[NSString alloc]initWithFormat:@"%@",userInfo]                              delegate:nil                     cancelButtonTitle:@"确定"                     otherButtonTitles:nil];    [alert show];    [alert release];}

转载于:https://www.cnblogs.com/zzili/archive/2013/01/28/6663181.html

你可能感兴趣的文章
Flymeos插桩适配教程
查看>>
还在用PS磨皮去皱?看看如何用神经网络高度还原你的年轻容貌!
查看>>
大端模式与小端模式、网络字节顺序与主机字节顺序
查看>>
微信支付申请90%的商户都卡在这儿了,申请微信支付,商户功能设置详细说明...
查看>>
高仿Instagram 页面效果android特效
查看>>
我的友情链接
查看>>
如何查找JSP页面中的错误
查看>>
2016 年总结
查看>>
将String转化成Stream,将Stream转换成String
查看>>
java路径Java开发中获得非Web项目的当前项目路径
查看>>
Google API设计指南-资源名称
查看>>
最全React技术栈技术资料汇总(收藏)
查看>>
【工具使用系列】关于 MATLAB 遗传算法与直接搜索工具箱,你需要知道的事
查看>>
Kali-linux Arpspoof工具
查看>>
PDF文档页面如何重新排版?
查看>>
基于http协议使用protobuf进行前后端交互
查看>>
UML设计一个电影票务销售系统(四)
查看>>
AlphaGo Zero用它来调参?【高斯过程】到底有何过人之处?
查看>>
Linux平台Oracle多个实例启动说明
查看>>
bash腳本編程之三 条件判断及算数运算
查看>>