您需要
AVAudioSession使用以下值之一设置类别:https
:
//developer.apple.com/library/ios/documentation/AVFoundation/Reference/AVAudioSession_ClassReference/index.html(AVAudioSession类参考)。
默认值设置为
AVAudioSessionCategorySoloAmbient。如您所见:
[…]使用此类别表示您的应用程序的音频是不可混合的-
激活您的会话将中断其他同样不可混合的音频会话。要允许混合,请改用AVAudioSessionCategoryAmbient类别。
在播放声音之前,您必须更改类别。为此:
AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryAmbient, error: nil)AVAudioSession.sharedInstance().setActive(true, error: nil)
您无需在每次播放声音时都拨打这些线路。 您可能只想做一次。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)