if([application respondsToSelector:@selector(registerUserNotificationSettings:)]) {
[self registerForiOS8PushSettings]; //for iOS8
} else {
//iOS7 or earlier
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];
}
Unable to get the push notification to iOS7 device. didRegisterForRemoteNotificatiosnWithDeviceToken
get called, In fact Message is successfully delivered. Working fine in iOS8.