Conforms to NSObject
Declared in Bit6IncomingCallHandler.h

Overview

The Bit6IncomingCallHandlerDelegate protocol defines the methods a delegate of the Bit6IncomingCallHandler object could implement to customize the behaviour when an incoming call is received.

Instance Methods

inCallViewController

Implement to customize the view controller used to handle the incoming call.

- (nonnull Bit6CallViewController *)inCallViewController

Return Value

a view controller to be used during the incoming call.

Declared In

Bit6IncomingCallHandler.h

incomingCallPromptContentViewForCallController:

Implement to customize the view shown in the incoming call prompt.

- (nullable UIView *)incomingCallPromptContentViewForCallController:(nonnull Bit6CallController *)callController

Parameters

callController

object with the information about the call.

Return Value

a view to use in the incoming call prompt.

Declared In

Bit6IncomingCallHandler.h

receivedIncomingCall:

Starting point of the incoming calls flow. Implement if you want to handle the entire flow.

- (void)receivedIncomingCall:(nonnull Bit6CallController *)callController

Parameters

callController

object with the information about the call.

Declared In

Bit6IncomingCallHandler.h