码迷,mamicode.com
首页 > 移动开发 > 详细

ios8中百度推送接收不到

时间:2014-10-28 17:53:08      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   os   ar   for   sp   on   bs   

ios8中百度推送接收类型会有所改变:

//消息推送注册

    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0)

    {

        [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings

                                                                             settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge)

                                                                             categories:nil]];

        [[UIApplication sharedApplication] registerForRemoteNotifications];

    }

    else{

        [[ UIApplication sharedApplication ] registerForRemoteNotificationTypes :( UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert )];

    }


//取消推送

[[ UIApplication sharedApplication ] registerForRemoteNotificationTypes :( UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert )];


ios8中百度推送接收不到

标签:style   io   color   os   ar   for   sp   on   bs   

原文地址:http://blog.csdn.net/alincexiaohao/article/details/40541999

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!