美文网首页iOS点点滴滴
AVAudioSessionCategory

AVAudioSessionCategory

作者: lancely | 来源:发表于2016-04-24 15:56 被阅读320次
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];

AVAudioSession的类别

  • AVAudioSessionCategoryAmbient

混音播放,例如雨声、汽车引擎等,可与其他音乐一起播放

  • AVAudioSessionCategorySoloAmbient

后台播放,其他音乐将被停止

  • AVAudioSessionCategoryPlayback

独占音乐播放 (如:用于扬声器播放)

  • AVAudioSessionCategoryRecord

录制音频

  • AVAudioSessionCategoryPlayAndRecord

播放和录制音频 (如:用于听筒播放)

  • AVAudioSessionCategoryAudioProcessing

使用硬件解码器处理音频,该音频会话使用期间,不能播放或录音

相关文章

网友评论

    本文标题:AVAudioSessionCategory

    本文链接:https://www.haomeiwen.com/subject/ifefrttx.html