SINCallClientDelegate Protocol Reference

Conforms to NSObject
Declared in SINCallClient.h

– client:willReceiveIncomingCall:

Tells the delegate that an incoming call will be received. This is specially useful for reporting the incoming call to CallKit when the app is in background.

- (void)client:(id<SINCallClient>)client willReceiveIncomingCall:(id<SINCall>)call

Parameters

client

The client informing the delegate that an incoming call will be received. The delegate of the incoming call object should be set by the implementation of this method.

call

The incoming call.

Discussion

To receive further events related to this call, a SINCallDelegate should be assigned to the call.

The call has entered the SINCallStateInitiating state.

Declared In

SINCallClient.h

– client:didReceiveIncomingCall:

Tells the delegate that an incoming call has been received.

- (void)client:(id<SINCallClient>)client didReceiveIncomingCall:(id<SINCall>)call

Parameters

client

The client informing the delegate that an incoming call was received. The delegate of the incoming call object should be set by the implementation of this method.

call

The incoming call.

Discussion

To receive further events related to this call, a SINCallDelegate should be assigned to the call.

The call has entered the SINCallStateInitiating state.

Declared In

SINCallClient.h