我正在使用 AudioKit 来管理我的应用程序中的声音引擎。我认为 AudioKit 的设置覆盖了某些东西,我无法获得锁屏音频控制。这是我目前的代码:
//Configure media control center
UIApplication.shared.beginReceivingRemoteControlEvents()
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
}
我在一个设置我所有 AudioKit 设置的函数中有这个,但它不起作用。使用 AudioKit 进行锁屏音频控制是否有特殊程序?