鎖屏圖像我有下面的代碼,併爲我工作,但它只能顯示當前藝術家和歌曲:顯示使用MPNowPlayingInfoCenter不起作用
let mpic = MPNowPlayingInfoCenter.defaultCenter()
mpic.nowPlayingInfo = [MPMediaItemPropertyTitle:songs[currentAudioIndex].songName,
MPMediaItemPropertyArtist:songs[currentAudioIndex].artistName]
我試着也設置圖像具有以下代碼但它不工作:
mpic.nowPlayingInfo = [MPMediaItemPropertyTitle:songs[currentAudioIndex].songName,
MPMediaItemPropertyArtist:songs[currentAudioIndex].artistName,
MPMediaItemPropertyArtwork:songs[currentAudioIndex].songImage]
SongImage是UIImage類型。
你說的不工作呢?任何異常,錯誤消息? –
沒關係得到它謝謝 –