Reputation: 767
Is there a way to get a callback or some other notice when a user has read or "seen" a push notification from my app?
Upvotes: 0
Views: 173
Reputation: 393781
You get a callback only if the user taps on the notification to open the app. In that case either didReceiveRemoteNotification
(if app was active or in the background) or application:didFinishLaunchingWithOptions
(if app wasn't running) is called. In both of them you can access the dictionary containing the push notification data, and callback your server if you wish.
Upvotes: 1