标签:解决 err error: 一个 code share player error play
1,原因:
没有设置声道;
AVAudioSession是一个单例,无需实例化即可直接使用。AVAudioSession在各种音频环境中起着非常重要的作用
针对不同的音频应用场景,需要设置不同的音频回话分类
2,解决方法:
在初始化AVAudioPlayer之前,设置声道,代码如下:
AVAudioSession *audioSession = [AVAudioSession sharedInstance];
[audioSession setCategory:AVAudioSessionCategoryPlayback error:nil];
[audioSession setActive:YES error:nil];
仅做记录!
ios开发之--AVAudioPlayer制作了一款播放器,耳机有声音,扬声器没声音
标签:解决 err error: 一个 code share player error play
原文地址:https://www.cnblogs.com/hero11223/p/9157316.html