博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 推送 获取手机设备的 deviceToken
阅读量:6301 次
发布时间:2019-06-22

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

hot3.png

第一步:申请证书:

第二步:申请app ids,应用名字必须一致。然后再进入进行编辑,使其enable,绿灯。

第三步:申请provisioning profile,生成.mobileprovision,双击该证书才能正确导入手机设备,不能拖。

第四步:创建应用,使其名字一致。

第五步:写代码

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

{

    // Override point for customization after application launch.

//    return YES;

    UIRemoteNotificationType types =

    (UIRemoteNotificationTypeBadge

     |UIRemoteNotificationTypeSound

     |UIRemoteNotificationTypeAlert);

    

    //注册消息推送

    [[UIApplication sharedApplication]registerForRemoteNotificationTypes:types];

    return YES;

    

}

//获取DeviceToken成功

- (void)application:(UIApplication *)application

didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken

{

    NSLog(@"DeviceToken: {%@}",deviceToken);

    //这里进行的操作,是将Device Token发送到服务端

    

    UIAlertView * alert = [[UIAlertView alloc]initWithTitle:nil message:[NSString stringWithFormat:@"DeviceToken:%@",deviceToken] delegate:self cancelButtonTitle:nil otherButtonTitles:@"确定", nil];

    [alert show];

}

//注册消息推送失败

- (void)application:(UIApplication *)application

didFailToRegisterForRemoteNotificationsWithError:(NSError *)error

{

    NSLog(@"Register Remote Notifications error:{%@}",error);

    //    NSLog(@"Register Remote Notifications error:{%@}",error.localizedDescription);

}

//处理收到的消息推送

- (void)application:(UIApplication *)application

didReceiveRemoteNotification:(NSDictionary *)userInfo

{

    NSLog(@"Receive remote notification : %@",userInfo);

    UIAlertView *alert =

    [[UIAlertView alloc] initWithTitle:@"温馨提示"

                               message:@"推送成功!"

                              delegate:nil

                     cancelButtonTitle:@"确定"

                     otherButtonTitles:nil];

    [alert show];

}

转载于:https://my.oschina.net/u/1992564/blog/330591

你可能感兴趣的文章
【为了爱,为了pascal】【第二章】选择PASCAL
查看>>
CSS学习笔记
查看>>
数字签名算法
查看>>
微信h5网页点击链接跳转到默认浏览器是怎么弄的?ccjump一键实现该方案
查看>>
IconFont的制作使用
查看>>
Windows Phone 8初学者开发—第1部分:系列介绍
查看>>
P3600 随机数生成器
查看>>
洛谷P3726 [AH2017/HNOI2017]抛硬币(组合数+扩展Lucas)
查看>>
BZOJ3531-[Sdoi2014]旅行(树剖+线段树动态开点)
查看>>
bzoj2724: [Violet 6]蒲公英(分块)
查看>>
启动tomcat时 cannot execute binary file
查看>>
讨论:C#Calendar赋初始值
查看>>
JS按钮控制内容上下滚动
查看>>
linux中变量的理解
查看>>
jenkins 和 git 的每日构建
查看>>
创建 window service 定时任务
查看>>
Docker集群管理(二)—— docker+swarm+etcd+shipyard
查看>>
Java知多少(73)文件的压缩处理
查看>>
j2ee部分
查看>>
oracle安装介质及补丁集下载地址 全版(留着自己用)
查看>>