MPRemoteCommandCenter未检测到下一个跟踪命令

时间:2015-05-26 17:08:57

标签: ios objective-c

我将以下代码添加到viewDidLoad,试图跟踪控制中心按下下一个曲目按钮的时间。它没有记录任何东西。

MPRemoteCommandCenter *commandCenter = [MPRemoteCommandCenter sharedCommandCenter];
    [commandCenter.nextTrackCommand addTargetWithHandler:^MPRemoteCommandHandlerStatus(MPRemoteCommandEvent *event) {
        NSLog(@"next track");
        return MPRemoteCommandHandlerStatusSuccess;
    }];

1 个答案:

答案 0 :(得分:0)

你应该开始播放音频。您的应用必须是“正在播放”应用。应用程序在开始播放音频之前不会接收远程控制事件。 https://developer.apple.com/library/ios/documentation/EventHandling/Conceptual/EventHandlingiPhoneOS/Remote-ControlEvents/Remote-ControlEvents.html

我已经在使用AVPlayer播放视频的应用上进行了测试,所有控制中心按钮(下一个和上一个)按预期工作并发送事件。