ios7 ios8 Notification

来源:互联网 发布:ios抓取网页数据 编辑:程序博客网 时间:2024/05/21 17:02
//-- Set Notification        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)];        }


http://stackoverflow.com/questions/24454033/registerforremotenotificationtypes-is-not-supported-in-ios-8-0-and-later

0 0
原创粉丝点击