How can I create iOS push notifications that don’t vibrate?

前端 未结 5 1959
终归单人心
终归单人心 2021-01-02 09:29

I know how to create silent push notifications (with playing a sound file that is silent). I would also like to send a push notification that doesn\'t vibrate phone.

5条回答
  •  一个人的身影
    2021-01-02 10:06

    when you register for push notification don't ask for sound type (UIRemoteNotificationTypeSound)

    - (void)registerForRemoteNotificationTypes:(UIRemoteNotificationType)types
    

    you can test this by manually removing the sound permission in the notification settings

提交回复
热议问题