Reputation: 59
i know we could disable Notification sound from the "Notification Center" of the device, does anybody know how to disable Remote notification sound using Xcode for notifications received when the application is in background? i've tried to call
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:UIRemoteNotificationTypeSound];
but it only remove the option to disable the Sound from "Notification Center" but the notification still play sound
Upvotes: 1
Views: 1543
Reputation: 40038
sound
in the notification payload. Don't register for sound notification type. Don't include UIRemoteNotificationTypeSound
in:
[application registerForRemoteNotificationTypes:UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound];
Upvotes: 1