与其他软件的检测系统正在播放音乐

时间:2012-12-01 12:54:02

标签: iphone objective-c ios avaudioplayer

如何判断系统是否有其他软件正在播放音乐ios?谢谢!!!

1 个答案:

答案 0 :(得分:1)

要查看是否正在播放其他音频,您可以查看kAudioSessionProperty_OtherAudioIsPlaying属性。 From Documentation

UInt32 propertySize, audioIsAlreadyPlaying;

propertySize = sizeof(UInt32);
AudioSessionGetProperty(kAudioSessionProperty_OtherAudioIsPlaying, &propertySize, &audioIsAlreadyPlaying);

How do I detect if other apps are playing background audio?