Reputation: 148
I am new to ios development. I am trying to build a voip app and I was wondering, is callkit all I need? or I need to integrate it with an already built voip app, using for example WebRTC?
Upvotes: 1
Views: 538
Reputation: 2398
As you might have guessed, CallKit alone is not sufficient. CallKit only provides the system-calling UI, and you need to develop the backend system for yourself. (Of course, you can use Web RTC instead of VoIP.)
Use CallKit to integrate your calling services with other call-related apps on the system. CallKit provides the calling interface, and you handle the back-end communication with your VoIP service.
https://developer.apple.com/documentation/callkit
Upvotes: 2