SINAudioControllerDelegate Protocol Reference

Conforms to NSObject
Declared in SINAudioController.h

Overview

The delegate of a SINAudioController object must adopt the SINAudioControllerDelegate protocol. The methods handle audio related state changes.

– audioControllerMuted:

Notifies the delegate that the microphone was muted.

- (void)audioControllerMuted:(id<SINAudioController>)audioController

Parameters

audioController

The audio controller associated with this delegate.

Declared In

SINAudioController.h

– audioControllerUnmuted:

Notifies the delegate that the microphone was unmuted.

- (void)audioControllerUnmuted:(id<SINAudioController>)audioController

Parameters

audioController

The audio controller associated with this delegate.

Declared In

SINAudioController.h

– audioControllerSpeakerEnabled:

Notifies the delegate that the speaker was enabled.

- (void)audioControllerSpeakerEnabled:(id<SINAudioController>)audioController

Parameters

audioController

The audio controller associated with this delegate.

Declared In

SINAudioController.h

– audioControllerSpeakerDisabled:

Notifies the delegate that the speaker was disabled.

- (void)audioControllerSpeakerDisabled:(id<SINAudioController>)audioController

Parameters

audioController

The audio controller associated with this delegate.

Declared In

SINAudioController.h