ios – 如何在iPhone锁屏幕中设置当前播放音频的标题?

前端之家收集整理的这篇文章主要介绍了ios – 如何在iPhone锁屏幕中设置当前播放音频的标题?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
播放音乐时,音乐标题显示在锁定屏幕的时间之下.

我也看到了TuneIn收音机如何通过显示当前播放的广播电台的名字.

你如何做到这一点?

解决方法

阅读文档: MPNowPlayingInfoCenter

这里是一个可以在iOS 5上运行的示例代码,它不会在旧版本的iOS上崩溃.

Class playingInfoCenter = NSClassFromString(@"MPNowPlayingInfoCenter");

if (playingInfoCenter) {
    MPNowPlayingInfoCenter *center = [MPNowPlayingInfoCenter defaultCenter];
    NSDictionary *songInfo = [NSDictionary dictionaryWithObjectsAndKeys:
                             @"Some artist",MPMediaItemPropertyArtist,@"Some title",MPMediaItemPropertyTitle,@"Some Album",MPMediaItemPropertyAlbumTitle,nil];
    center.nowPlayingInfo = songInfo;
}
原文链接:https://www.f2er.com/iOS/329675.html

猜你在找的iOS相关文章