TVONotificationDelegate Protocol Reference

Conforms to NSObject
Declared in TVONotificationDelegate.h

Overview

The TVONotificationDelegate’s methods allow the delegate to be informed when incoming calls are received or cancelled.

– incomingCallReceived: required method

Notifies the delegate that an incoming call has been received.

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

Parameters

incomingCall

A TVOIncomingCall object.

Discussion

Notifies the delegate that an incoming call has been received.

See Also

Declared In

TVONotificationDelegate.h

– incomingCallCancelled: required method

Notifies the delegate that an incoming call has been cancelled.

- (void)incomingCallCancelled:(nullable TVOIncomingCall *)incomingCall

Parameters

incomingCall

A TVOIncomingCall object. Note: This may be nil if a TVOIncomingCall object was not previously created.

Discussion

Notifies the delegate that an incoming call has been cancelled.

See Also

Declared In

TVONotificationDelegate.h

– notificationError: required method

Notifies the delegate that an error occurred when processing the VoIP push notification payload.

- (void)notificationError:(nonnull NSError *)error

Parameters

error

An NSError object describing the error.

Discussion

Notifies the delegate that an error occurred when processing the VoIP push notification payload.

Declared In

TVONotificationDelegate.h