获取点击事件锁屏控制(MPRemoteCommandCenter)

时间:2019-02-28 12:19:06

标签: ios swift lockscreen mpremotecommandcenter

我已经实现了Avplayer来播放音频。我已经使用MPRemoteCommandCenter在锁定屏幕上进行访问。我可以通过以下方式获得所有访问权限:

    let commandCenter = MPRemoteCommandCenter.shared()

    commandCenter.pauseCommand.addTarget { (event) -> MPRemoteCommandHandlerStatus in
        //Update your button here for the pause command
        return .success
    }

    commandCenter.playCommand.addTarget { (event) -> MPRemoteCommandHandlerStatus in
        //Update your button here for the play command
        return .success
    }

但是我想检测用户何时从锁定屏幕上点击音乐标题或徽标或播放器。它打开我们的应用程序。有可能得到吗?

当用户从锁定屏幕上点击音乐播放器时,我想打开一个控制器。

1 个答案:

答案 0 :(得分:1)

您可以在激活应用程序时做出响应,但是由于用户在锁定屏幕中轻按了音乐播放器,因此无法得知它已被激活。