在iOS设备的锁屏上添加自定义专辑封面

在iOS设备的锁屏上添加自定义专辑封面,第1张

概述我正在构建一个流播shoutcast音频的iOS应用程序. 我想在设备锁屏上显示自定义图像(无论是哪首歌,我都希望显示相同的图像). 下面的代码向我展示了锁屏上的当前标题,但没有显示专辑艺术,就像下面的图像一样. 有可能首先(我认为,Mixcloud实现了它)?如果是的话,这有什么问题?来源于此. Class playingInfoCenter = NSClassFromString(@"MPNo 我正在构建一个流播shoutcast音频的iOS应用程序.

我想在设备锁屏上显示自定义图像(无论是哪首歌,我都希望显示相同的图像).

下面的代码向我展示了锁屏上的当前标题,但没有显示专辑艺术,就像下面的图像一样.

有可能首先(我认为,Mixcloud实现了它)?如果是的话,这有什么问题?来源于此.

Class playingInfoCenter = NSClassFromString(@"MPNowPlayingInfoCenter");if (playingInfoCenter) {    NSMutableDictionary *songInfo = [[NSMutableDictionary alloc] init];    UIImage * albumImage = [UIImage imagenamed: @"icon_HD.png"];    MPMediaItemArtwork * albumart = [[MPMediaItemArtwork alloc] initWithImage:albumImage];    [songInfo  setobject:titre.text          forKey:MPMediaItemPropertyTitle];    [songInfo  setobject:artiste.text        forKey:MPMediaItemPropertyArtist];    [songInfo  setobject:albumart            forKey:MPMediaItemPropertyArtwork];    [[MPNowPlayingInfoCenter defaultCenter] setNowPlayingInfo:songInfo];}

https://lh6.googleusercontent.com/-yV8VbLatlxg/UoD7Pq-Hv1I/AAAAAAAALVg/UEwKUp00k2U/s1600/iOS-7-lock-screen-music-controls.png

解决方法 这是我在我的应用程序上使用的代码.适用于iOS7

UIImage *image = [UIImage imagenamed:@"myImage.png"];MPMediaItemArtwork *albumartwork = [[MPMediaItemArtwork alloc] initWithImage:image];NSDictionary *info = @{ MPMediaItemPropertyTitle: @"Song name",MPMediaItemPropertyArtist: @"Artist name",MPMediaItemPropertyAlbumTitle: @"Album name",MPMediaItemPropertyPlaybackDuration: 1.0,MPNowPlayingInfoPropertyElapsedplaybackTime: 1.0,MPMediaItemPropertyArtwork: albumartwork };[MPNowPlayingInfoCenter defaultCenter].NowPlayingInfo = info;

让我知道是否适合你.

总结

以上是内存溢出为你收集整理的在iOS设备的锁屏上添加自定义专辑封面全部内容,希望文章能够帮你解决在iOS设备的锁屏上添加自定义专辑封面所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1071924.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存