0

我想从蓝牙免提设备接收远程控制事件,下面提到的是我的播放和暂停事件代码集。

MPRemoteCommandCenter.shared().nextTrackCommand.isEnabled = true
MPRemoteCommandCenter.shared().previousTrackCommand.isEnabled = true
MPRemoteCommandCenter.shared().nextTrackCommand.addTarget(self, action: #selector(playCommand))
MPRemoteCommandCenter.shared().previousTrackCommand.addTarget(self, action: #selector(previousCommand))

但不会触发此类事件。任何帮助将不胜感激。

4

1 回答 1

0

你需要打电话

[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];

viewWillAppear()

为了使您的应用程序获得所需的事件。

于 2017-12-06T09:41:27.853 回答