我正在尝试在 iOS 锁定屏幕上为我的远程控制应用程序实现播放器控件,该应用程序控制 PC 上的音乐播放器。所以基本上我需要控制 iOS 设备之外的播放。我在功能(音频)中启用了背景模式并尝试设置 MPRemoteCommandCenter 锁定屏幕控件,但未显示它们。这是代码:
class RemoteCommandHandler: NSObject {
static let shared = RemoteCommandHandler()
private let player = AVPlayer()
private let audioSession = AVAudioSession.sharedInstance()
private let commandCenter = MPRemoteCommandCenter.shared()
func initRemote() {
//UIApplication.shared.beginReceivingRemoteControlEvents()
do {
if #available(iOS 10.0, *) {
try audioSession.setCategory(.playback, mode: .default, options: [])
} else {
// Fallback on earlier versions
try audioSession.setCategory(.playback)
}
} catch {
NSLog("\(error)")
}
do {
try audioSession.setActive(true)
NSLog("AVSession is active")
} catch {
NSLog("\(error)")
}
setupRemoteTransportControls()
setupNowPlaying()
}
func setupRemoteTransportControls() {
commandCenter.togglePlayPauseCommand.isEnabled = true
commandCenter.togglePlayPauseCommand.addTarget(self, action: #selector(controlPlayPause))
}
func setupNowPlaying() {
var nowPlayingInfo = [String : Any]()
nowPlayingInfo[MPMediaItemPropertyTitle] = NowPlayingInfo.getValue(.Title)
if let image = UIImage(named: "DemoArtwork") {
nowPlayingInfo[MPMediaItemPropertyArtwork] = MPMediaItemArtwork(image: image)
}
nowPlayingInfo[MPNowPlayingInfoPropertyElapsedPlaybackTime] = TimeInterval(exactly: 10)
nowPlayingInfo[MPMediaItemPropertyPlaybackDuration] = NowPlayingInfo.getDurationMs() / 1000
nowPlayingInfo[MPNowPlayingInfoPropertyPlaybackRate] = 1.0
MPNowPlayingInfoCenter.default().nowPlayingInfo = nowPlayingInfo
}
}
甚至可以做我想做的事吗?我做错了什么?