-
Notifications
You must be signed in to change notification settings - Fork 2
Getting InfobipRTC Client
Lejla Solak edited this page Oct 14, 2025
·
5 revisions
The InfobipRTC client is a protocol which allows you to connect to the Infobip platform, make calls
to others and receive incoming calls. It is the starting point of using the SDK. Therefore, we provide a dedicated
function to both create and retrieve an instance of the InfobipRTC client.
In Swift, a global function is available to create and retrieve an instance of the InfobipRTC client. Developers can use the following code snippet:
let infobipRTC = InfobipRTCFactory.getInfobipRTCInstance()In Objective-C, a static function to create and retrieve an instance of the InfobipRTC client is introduced to the InfobipRTCFactory class. Developers can use the following code snippet:
InfobipRTC *infobipRTC = [InfobipRTCFactory getInfobipRTCInstance];