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

iOS8远程通知处理

时间:2014-09-22 16:50:52      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:style   io   os   使用   ar   for   sp   on   log   

// 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:
     (UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert)];
}

判断PUSH是否打开的方法是:

 //判断推送是否开启

    if (isiOS8)

    {

        UIUserNotificationType type = [application currentUserNotificationSettings].types;

        if (type) {

        }else

        {

        }

         NSLog(@"------- 推送类型 ------%d",type);

    }

    else

    {

       UIRemoteNotificationType type = [application enabledRemoteNotificationTypes];

        if (type) {

        }else

        {

   }

         NSLog(@"------- 推送类型 ------%d",type);

    }

 

iOS8远程通知处理

标签:style   io   os   使用   ar   for   sp   on   log   

原文地址:http://www.cnblogs.com/zhujin/p/3986000.html

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