Skip to content

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.

Swift Usage:

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()

Objective-C Usage:

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];

Tutorials

Migration guides

Reference documentation

Clone this wiki locally