I am developing a kind of gaming application where I need to handle the following:
`if(user used siri app)
{
// Send notification:1 to server
}
elseif(user attended a call)
{
// Send notification:2 to server
}`
Does it possible to handle above cases inside my app ? Please guide me. Thanks in Advance.
I am aware of applicationDidEnterBackground which can be used when app is sent to backgound. But it will be great if I can find abouve cases.