如何判断系统是否有其他软件正在播放音乐ios?谢谢!!!
答案 0 :(得分:1)
要查看是否正在播放其他音频,您可以查看kAudioSessionProperty_OtherAudioIsPlaying
属性。 From Documentation
UInt32 propertySize, audioIsAlreadyPlaying;
propertySize = sizeof(UInt32);
AudioSessionGetProperty(kAudioSessionProperty_OtherAudioIsPlaying, &propertySize, &audioIsAlreadyPlaying);