標籤:is not supported in 推送 ios8 registerforremotenot
註冊方式:
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0) { [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge) categories:nil]]; [[UIApplication sharedApplication] registerForRemoteNotifications]; } else { [[UIApplication sharedApplication]registerForRemoteNotificationTypes:UIRemoteNotificationTypeAlert| UIRemoteNotificationTypeBadge| UIRemoteNotificationTypeSound]; }
同理判斷訊息推送是否開啟也有變化
UIRemoteNotificationType types;if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0) types = [[UIApplication sharedApplication] currentUserNotificationSettings].types;else types = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];return (types & UIRemoteNotificationTypeAlert);
registerForRemoteNotificationTypes: is not supported in iOS 8.0 and