2

音乐应用程序在锁定屏幕上显示歌词(文本页面)。

我试图将 MPMediaItemPropertyLyrics 设置为显示大量文本,但事实并非如此。有任何想法吗?

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

1 回答 1

1

您不能设置歌词。

只能设置以下文档中显示的某些类型的属性: https ://developer.apple.com/library/ios/documentation/MediaPlayer/Reference/MPNowPlayingInfoCenter_Class/Reference/Reference.html

于 2013-09-14T10:30:53.677 回答