I have a problem with Push Notification on an iOS8 device. Everything works fine, but pressing does not ring, it only appears on the screen. I send regular clicks to the control panel in which sound is turned on by default. I tested iPhone4 (iOS 7.1.2), iPhone5 (iOS 7.0.4), it works fine, but there is no sound on the iPhone with iOS 8. Thanks
edit:
1) We have already changed our code to process the changes for registering notifications for ios8. The following is a snippet of code:
// Register for Push Notitications, if running iOS 8 if ([application respondsToSelector:@selector(registerUserNotificationSettings:)]) { UIUserNotificationType userNotificationTypes = (UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound); UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:userNotificationTypes categories:nil]; [application registerUserNotificationSettings:settings]; [application registerForRemoteNotifications]; } else { // Register for Push Notifications before iOS 8 [application registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound)]; }
2) Changing any configuration parameters did not help either restarting the device or restarting.
source share