为我的应用程序使用锁定屏幕?

时间:2010-06-28 17:45:33

标签: iphone multitasking

我想让我的应用程序在多任务处理时使用锁定屏幕上的音频按钮。 (是的,就像潘多拉一样。) 我希望使用什么API?

2 个答案:

答案 0 :(得分:2)

请参阅Remote Control of Multimedia文档。基本上,您只需要在共享应用程序实例上调用-beginReceivingRemoteControlEvents,然后注册某些内容(可能是您的主视图控制器)作为第一个响应者,并在其上实现-remoteControlReceivedWithEvent:方法。您将从锁屏控件和耳机点击器以及多任务抽屉左侧的控制按钮获取事件。要在应用程序不是最重要的时候播放音频,您还应该查看背景音频上的this information

答案 1 :(得分:0)

现在比iOS 7更容易了。以下是播放/暂停切换(耳机按钮)的示例。有关更多选项,请参阅MPRemoteCommandCenter和MPRemoteCommand的文档。

    MPRemoteCommandCenter *commandCenter = [MPRemoteCommandCenter sharedCommandCenter];

    [commandCenter.togglePlayPauseCommand addTargetWithHandler:^MPRemoteCommandHandlerStatus(MPRemoteCommandEvent * _Nonnull event) {
        NSLog(@"toggle button pressed");
        return MPRemoteCommandHandlerStatusSuccess;
    }];

或者,如果您更喜欢使用方法而不是块:

    [commandCenter.togglePlayPauseCommand addTarget:self action:@selector(toggleButtonAction)];

停止:

    [commandCenter.togglePlayPauseCommand removeTarget:self];

或:

    [commandCenter.togglePlayPauseCommand removeTarget:self action:@selector(toggleButtonAction)];

您需要将其添加到文件的包含区域:

@import MediaPlayer;