1

我正在尝试在 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
    }
}

甚至可以做我想做的事吗?我做错了什么?

4

1 回答 1

1

看起来在锁定屏幕上进行控制的唯一可能方法是从您的应用程序开始播放真实音频文件。我在应用程序启动时做了一个非常短的无声文件播放的解决方法,现在我可以访问这些控件。

请记住,应启用背景模式(音频)以便在您的应用不在屏幕上时查看控件。

另一个限制是音量控制硬连线到设备音量,因此您不能单独更改应用程序音量。

这是启用控件的最少代码:

import MediaPlayer
import AVFoundation

class RemoteCommandHandler: NSObject {
    static let shared = RemoteCommandHandler()

    private var player: AVPlayer!
    private var playerItem: AVPlayerItem!
    private let audioSession = AVAudioSession.sharedInstance()
    private let commandCenter = MPRemoteCommandCenter.shared()

    func initRemote() {
        let sound = Bundle.main.path(forResource: "SilenceAAC", ofType: "m4a")
        playerItem = AVPlayerItem(url: URL(fileURLWithPath: sound!))
        player = AVPlayer(playerItem: playerItem)

        do {
            if #available(iOS 10.0, *) {
                try audioSession.setCategory(.playback, mode: .default, options: [])
            } else {
                // Fallback on earlier versions
                try audioSession.setCategory(.playback)
            }

            try audioSession.setActive(true)
            NSLog("AVSession is active - \(audioSession)")
        } catch {
            NSLog("\(error)")
        }

        setupNowPlaying()
        setupRemoteTransportControls()

        player.play()
    }

    func setupRemoteTransportControls() {
        commandCenter.togglePlayPauseCommand.addTarget(self, action: #selector(controlPlayPause))
    }

    func setupNowPlaying() {
        var nowPlayingInfo = [String : Any]()
        nowPlayingInfo[MPMediaItemPropertyTitle] = NowPlayingInfo.getValue(.Title)

        MPNowPlayingInfoCenter.default().nowPlayingInfo = nowPlayingInfo
    }
}
于 2020-03-11T05:45:57.703 回答