How can I find out that a push notification is received in iOS (Objective-C)? For example, in android there is a method: onMessageReceived from com.google.android.gms.gcm.GcmListenerService.

And in Objective-C - how is it done?

1 answer 1

On iOS there is no possibility to find out about the status of Push-notifications, unfortunately.

However, you can add the -didReceiveRemoteNotification: and -didFinishLaunchingWithOptions: logic to -didReceiveRemoteNotification: that the message is received on the server.