this is the code i used for the RemoteNotificationType:
NSUInteger rntypes = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
Use with this condition to give support in both iOS 7 and prior iOS 8
#define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending)
NSUInteger rntypes;
if (!SYSTEM_VERSION_LESS_THAN(@"8.0")) {
rntypes = [[[UIApplication sharedApplication] currentUserNotificationSettings] types];
}else{
rntypes = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
}