TVOIncomingCallDelegate Protocol Reference

Conforms to NSObject
Declared in TVOIncomingCallDelegate.h

Overview

Objects that adopt the TVOIncomingCallDelegate protocol will be informed of the lifecycle events of incoming calls.

Required Methods

– incomingCallDidConnect: required method

Notifies the delegate that an incoming call has connected.

- (void)incomingCallDidConnect:(nonnull TVOIncomingCall *)incomingCall

Parameters

incomingCall

The TVOIncomingCall that was connected.

Discussion

Notifies the delegate that an incoming call has connected.

See Also

Declared In

TVOIncomingCallDelegate.h

– incomingCallDidDisconnect: required method

Notifies the delegate that an incoming call has disconnected.

- (void)incomingCallDidDisconnect:(nonnull TVOIncomingCall *)incomingCall

Parameters

incomingCall

The TVOIncomingCall that was disconnected.

Discussion

Notifies the delegate that an incoming call has disconnected.

See Also

Declared In

TVOIncomingCallDelegate.h

– incomingCall:didFailWithError: required method

Notifies the delegate that an incoming call has encountered an error.

- (void)incomingCall:(nonnull TVOIncomingCall *)incomingCall didFailWithError:(nonnull NSError *)error

Parameters

incomingCall

The TVOIncomingCall that encountered the error.

error

The NSError that occurred.

Discussion

Notifies the delegate that an incoming call has encountered an error.

See Also

Declared In

TVOIncomingCallDelegate.h

Optional Methods

– incomingCallIsConnecting:

Notifies the delegate that an incoming call is connecting.

- (void)incomingCallIsConnecting:(nonnull TVOIncomingCall *)incomingCall

Parameters

incomingCall

The TVOIncomingCall that is connecting.

Discussion

Notifies the delegate that an incoming call is connecting.

See Also

Declared In

TVOIncomingCallDelegate.h