ios8 远程推送的注册代码

来源:互联网 发布:石田电子称软件 编辑:程序博客网 时间:2024/06/10 02:12
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)];
    }
    
    

0 0