锁屏显示正在播放的音乐

来源:互联网 发布:华为悦盒怎么连接网络 编辑:程序博客网 时间:2024/04/28 00:09
 Class playingInfoCenter = NSClassFromString(@"MPNowPlayingInfoCenter");    if (playingInfoCenter) {        NSMutableDictionary *songInfo = [ [NSMutableDictionary alloc] init];        MPMediaItemArtwork *albumArt = [ [MPMediaItemArtwork alloc] initWithImage: [UIImage imagedNamed:@"AlbumArt"] ];        [ songInfo setObject: @"Audio Title" forKey:MPMediaItemPropertyTitle ];        [ songInfo setObject: @"Audio Author" forKey:MPMediaItemPropertyArtist ];        [ songInfo setObject: @"Audio Album" forKey:MPMediaItemPropertyAlbumTitle ];        [ songInfo setObject: albumArt forKey:MPMediaItemPropertyArtwork ];        [ [MPNowPlayingInfoCenter defaultCenter] setNowPlayingInfo:songInfo ];    }




0 0
原创粉丝点击