美文网首页
Show Album Image on Lock Screen

Show Album Image on Lock Screen

作者: liwp_Stephen | 来源:发表于2016-11-04 17:36 被阅读0次

The following text is from Showing a lock screen image using MPNowPlayingInfoCenter doesn't work

Never mind I figured out.
If anyone want to learn you have to do the following

 let mpic = MPNowPlayingInfoCenter.defaultCenter()

// initialize an instance of MPMediaItemArtWork with a UIImage
 var albumArtWork = MPMediaItemArtwork(image: songs[currentAudioIndex].songImage)

// Then assign it to the MPNowPlayingInfoCenter
 mpic.nowPlayingInfo = [ MPMediaItemPropertyTitle:songs[currentAudioIndex].songName, MPMediaItemPropertyArtist:songs[currentAudioIndex].artistName, MPMediaItemPropertyArtwork:albumArtWork ]

相关文章

网友评论

      本文标题:Show Album Image on Lock Screen

      本文链接:https://www.haomeiwen.com/subject/rcdwuttx.html