当前位置: 代码迷 >> 综合 >> registerForRemoteNotificationTypes: is not supported in iOS 8.0 and later
  详细解决方案

registerForRemoteNotificationTypes: is not supported in iOS 8.0 and later

热度:7   发布时间:2023-12-11 14:12:12.0

今天遇到了registerForRemoteNotificationTypes: is not supported in iOS 8.0 and later   这个问题,下面是解决的方法:

// 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)];
}

  相关解决方案