iOS8.0推送通知的注册方法

来源:互联网 发布:淘宝店铺权重怎么提升 编辑:程序博客网 时间:2024/04/30 04:00
- (void)registerRemoteNotification{        if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0)    {        [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings                                                                             settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge)                                                                             categories:nil]];        [[UIApplication sharedApplication] registerForRemoteNotifications];    }    else    {        UIRemoteNotificationType apn_type = (UIRemoteNotificationType)(UIRemoteNotificationTypeAlert|UIRemoteNotificationTypeSound|UIRemoteNotificationTypeBadge);        [[UIApplication sharedApplication] registerForRemoteNotificationTypes:apn_type];    }        }

0 0