ios7与ios8并存,注册推送通知

来源:互联网 发布:产品系统php设计案例 编辑:程序博客网 时间:2024/04/30 13:10

 // IOS8 新系统需要使用新的代码咯    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0)    {        [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings                                                                             settingsForTypes:(UIUserNotificationTypeSound |UIUserNotificationTypeAlert | UIUserNotificationTypeBadge)                                                                             categories:nil]];                        [[UIApplication sharedApplication] registerForRemoteNotifications];    }    else    {        //ios7注册推送通知        [[UIApplication sharedApplication] registerForRemoteNotificationTypes:         (UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert)];    }

0 0
原创粉丝点击