到目前为止,我已经能够在使用Sinch时启用扬声器。我不确定这是一个错误还是我做错了什么。我在iPhone 5S和iPhone 6上都遇到过这个问题。
以下是我一直在使用的代码:
- (void)speaker {
id <SINAudioController> audio = [self.sinchClient audioController];
[audio enableSpeaker];
}
这是从以下地方调用的地方:
- (void)callDidEstablish:(id<SINCall>)call;
{
DDLogVerbose(@"Call did establish");
// Set speaker and mute
[self mute];
[self speaker];
}