We want to send an acknoledge message to our server to ensure that users received a certain push message. For Android this is really simple because we can infercept the GCM push with a 'broadcastlistener' but for ios I cannot find how to do this and if it is possible.
We do not need to stick with ios push, but we do prefer it. So any answer that suggests a workaround is also fine.
To make it more clear: we know apple does not guarantee delivery and sends no acknoledge by themselves. That is why we want the app to send an acknoledge, but how does the app know when the push arrives when the app is not active.
Thanks in advance.
edit: It seems from the answers and our own research that what we want is not possible using the APNS. Does any one know a workaround if it is possible at all to send a message to the app when the app state is killed and we want to receive and acknoledge the message?