2012-08-09 64 views
2

音樂應用程序在鎖定屏幕上顯示歌詞(文本頁面)。MPNowPlayingInfoCenter在鎖定屏幕上顯示歌詞

我試圖設置MPMediaItemPropertyLyrics以顯示大量的文本,但它沒有。 任何想法?

MPNowPlayingInfoCenter* mpic = [MPNowPlayingInfoCenter defaultCenter]; 
      mpic.nowPlayingInfo = @{MPMediaItemPropertyAlbumTitle:sight.guide.name, 
     MPMediaItemPropertyTitle:sight.name, MPMediaItemPropertyLyrics:sight.note}; 

回答

1

您無法設置歌詞。

只有下列文件中顯示某些類型的屬性可以設置: https://developer.apple.com/library/ios/documentation/MediaPlayer/Reference/MPNowPlayingInfoCenter_Class/Reference/Reference.html

+0

這是否意味着你不能顯示在鎖定屏幕上的歌詞? – Neeku 2013-12-04 12:36:20

+2

@Neeku不,你不能。如果您確實想要在鎖定屏幕上顯示歌詞,則可能必須製作包含歌詞文本的圖像並將其設置在MPMediaItemPropertyArtwork屬性中。 – idearibosome 2013-12-04 13:29:37