我想在设备锁屏上显示自定义图像(无论是哪首歌,我都希望显示相同的图像).
下面的代码向我展示了锁屏上的当前标题,但没有显示专辑艺术,就像下面的图像一样.
有可能首先(我认为,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
解决方法 这是我在我的应用程序上使用的代码.适用于iOS7UIImage *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设备的锁屏上添加自定义专辑封面所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)