`
iaiai
  • 浏览: 2146027 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

is not supported in iOS 8.0 and later.

 
阅读更多
在做Push获取设备device Token是提示如下:

registerForRemoteNotificationTypes: is not supported in iOS 8.0 and later.

解决办法:

之前注册启用Push的代码是:

现改为如下:
    // 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:(UIRemoteNotificationTypeAlert|UIRemoteNotificationTypeSound|UIRemoteNotificationTypeBadge)];
    }

  • 大小: 10.1 KB
  • 大小: 17.4 KB
  • 大小: 64.6 KB
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics