我用AVPlayer
播放一些音频文件,现在我想在控制中心或锁定屏幕上显示曲目信息。
我这样设置:
NSDictionary *info = @{
MPMediaItemPropertyArtist: @"Test",
MPMediaItemPropertyAlbumTitle: @"Test",
MPMediaItemPropertyTitle: @"Test",
MPNowPlayingInfoPropertyPlaybackRate :@1.0f };
[[MPNowPlayingInfoCenter defaultCenter]setNowPlayingInfo:info];
并且还添加了
[[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
但结果与此处描述的相同How to set audio details with an image on control center in Objective-C for iOS11?一切都只是灰色,没有信息显示。