4

Here is requirement to show green top bar to indicate audio/video call is on in app foreground state. On action of top bar tap action, should back to calling window. Is there any api available in iOS sdk to do same. Please suggest your response would be very helpful for me. Thanks in advance.

Here adding reference image of skype app, that use red bar to return to calling window.

I searched in stackoverflow, but their solution didn't work for me.

Here adding reference image of skype app, that use **red bar** to return to calling window.

SachinVsSachin
  • 6,401
  • 3
  • 33
  • 39

1 Answers1

3

Twilio evangelist here. The "tap status bar to return to call" feature is built-in to any app that uses CallKit which was released with iOS 10. If you implement CallKit for your application you should get the status bar tap to return to call feature. Watch this WWDC video for more details.

Our new Programmable Voice SDK is in beta for iOS and will have new features soon to make CallKit even easier to implement. This quickstart will get you up and running with that SDK if you're interested.

Brent Schooley
  • 782
  • 1
  • 6
  • 20
  • As we are not targeting iOS 10, do you have any solution to achive like skype did. – SachinVsSachin Oct 05 '16 at 05:25
  • 7
    With CallKit the "tap status bar to return to call" only appears when the app is in the background. It disappears once you open the app. Any idea how to show it there when not in the call-screen and then make it disappear once in the call-screen? – Jeyhey Oct 05 '16 at 12:45
  • I am using 'TwilioVideo', '~> 3.2' for video calling, but when I put my app in background during video call it's not showing me any status bar about ongoing calls. so do I have to do something to do that or it depends on TwilioVideo SDK? – Deepak Singh May 05 '20 at 06:12