Swift: Remote Command Center not show in lockScree

2019-08-21 18:00发布

Iam trying to show command center in lock screen and not woking for me, i see the code from this tutorial, and write the same code but also not working https://github.com/lukagabric/LGAudioPlayerLockScreen

this is the code

  var nowPlayingInfo = [MPMediaItemPropertyTitle: currentPlaybackItem.trackName,
                          MPMediaItemPropertyAlbumTitle: currentPlaybackItem.albumName,
                          MPMediaItemPropertyArtist: currentPlaybackItem.artistName,
                          MPMediaItemPropertyPlaybackDuration: audioPlayer.duration,
                          MPNowPlayingInfoPropertyPlaybackRate: NSNumber(value: 1.0 as Float)] as [String : Any]

    if let image = UIImage(named: currentPlaybackItem.albumImageName) {
        nowPlayingInfo[MPMediaItemPropertyArtwork] = MPMediaItemArtwork(image: image)
    }
    self.nowPlayingInfoCenter.nowPlayingInfo = nowPlayingInfo

Any one can help

2条回答
乱世女痞
2楼-- · 2019-08-21 18:39

Thanks all, I found the solution, my last code in set category

self.audioSession.setCategory(AVAudioSession.Category.playback , mode: .default , options: .mixWithOthers )

and the solution is

self.audioSession.setCategory(AVAudioSession.Category.playback , mode: .default , options: .init(rawValue: 0) )
查看更多
Anthone
3楼-- · 2019-08-21 19:03

I noticed when trying to update now playing info dictionary you have to fill key with data even empty string.

are you sure trackName, albumName, artistName are not nil ?

ModernAVPlayer has a good example: check this "NowPlaying" code

查看更多
登录 后发表回答