user1544138
user1544138

Reputation: 767

Know when user "reads" a push notification from my app?

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

Answers (1)

Eran
Eran

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

Related Questions