检测IOS中是否暂停其他音乐?

时间:2011-12-29 09:05:04

标签: ios audio

我知道我们可以通过kAudioSessionProperty_OtherAudioIsPlaying检测其他音频应用是否正在播放音乐,但是,即使其他应用的音乐暂停,此属性也会返回相同的值,所以我的问题是,如何检测其他音频流是否暂停还是在玩?有谁能够帮我?非常感谢!!

1 个答案:

答案 0 :(得分:0)

使用这样的代码:

    [notificationCenter addObserver: self
                           selector: @selector (handlerPlaybackStateChanged:)
                               name: MPMusicPlayerControllerPlaybackStateDidChangeNotification
                             object: nil];

    [[MPMusicPlayerController iPodMusicPlayer] beginGeneratingPlaybackNotifications];