Skip to content

sendbird/examples-calls-ios

Repository files navigation

Examples for Sendbird Calls

Platform Languages License: MIT

Introduction

Sendbird Calls SDK for iOS is used to initialize, configure, and build voice and video calling functionality into your iOS client app. In this repository, you will find multiple sample apps that implement various features of the Calls SDK into an iOS app.

In the SendBirdCallsExample Xcode Workspace, you will find multiple Xcode Projects that each provide quick implementation of a feature in Calls SDK.

Find out more about Sendbird Calls for iOS on Calls for iOS doc. If you need any help in resolving any issues or have questions, visit our community.


Before getting started

To run the example apps, you must install SendBirdCalls sdk by running the following command on your terminal window.

$ pod install

For more information about requirements, refer to the Calls QuickStart repository.

Receiving a DirectCall

In order to receive an incoming DirectCall, you must implement either Remote Notifications or VoIP Notifications.

Examples in this repository use basic Remote Notifications to receive an incoming call. For a DirectCall example app using VoIP Notifications, please refer to our QuickStart sample.

Samples

BaseSample project contains simple implementation of making and receiving a DirectCall.

ScreenCapture project contains implementation of capturing local and remote video view while making a DirectCall.

ScreenRecording project contains implementation of recording local and remote user's video and audio while making a DirectCall.

ScreenShare project contains implementation of sharing local screen with the remote user while making a DirectCall. This sample uses Apple's ReplayKit to capture and share the app's screen.

LocalViewControl project contains implementation of switching camera device and mirroring local videoView while making a DirectCall.

SoundEffect project contains implementation of configuring different sound effects for Direct Call.

MediaControl project contains implementation of toggling audio / video status while making a DirectCall.

CallHistory project contains implementation of querying and displaying call history using DirectCallLogListQuery.

VoIPNotifications project contains implementation of integrating Apple's CallKit with SendBirdCalls.

AutoAnswer project contains implementation of automatically handling incoming Direct Calls.

HoldAndResume project contains implementation of holding and resuming multiple Direct Calls.