Create a mobile app that listens to incoming phone call events

后端 未结 1 1126
野趣味
野趣味 2021-01-21 10:45

As the title suggests, I would like to create a mobile app that runs in the background and catches \"incoming call\" events. Moreover I would like to use a Cross-Platform Develo

相关标签:
1条回答
  • 2021-01-21 11:09

    On the iPhone, there's nothing you can do to "catch" or even register incoming calls. The only thing you could do is create an app that protocols the time at which it has been sent to the background or became inactive, because you'r appdelegate will be notified - but that will happen on many occasions, not only when a phone call is received. It won't work while the app is in the background (on multitasking enabled devices) alltogether. So, an app like this would be totally useless...

    Sorry, no help there!

    0 讨论(0)
提交回复
热议问题