Difference Between iOS Push Notifications and Remote Notifications?
Asked Answered
E

1

8

In Xcode under app capabilities there is an option to turn on Push Notifications. Under Background Modes there is also an option to turn on Remote Notifications. What is the difference? Pros/Cons?

Do I still set up a push certificate for remote notifications?

Electrocardiogram answered 30/8, 2016 at 19:4 Comment(2)
remote notif and push notif are same. Remote notif and local notif are different.Rounder
Do I need to have both remote and push notifications enabled for it to work?Electrocardiogram
E
6

Remote notifications is a special (and rather poorly named) background mode that allows the app to download content in response to a push notification.

From Apple:

The app wants to start downloading content when a push notification arrives. Use this notification to minimize the delay in showing content related to the push notification.

Normal push notifications will not require this permission, but adding this mode allows additional functionality for push notifications.

And yes, you will still require push certificates even with this background mode enabled.

Erasmo answered 30/8, 2016 at 19:12 Comment(2)
So if a user had set "Allow Notifications" for the app in Settings to Off, can Remote Notifications still work?Watchtower
You should post that as a new question, or just try it.Erasmo

© 2022 - 2024 — McMap. All rights reserved.