iPhone锁屏上的音乐信息

时间:2012-12-02 19:21:33

标签: iphone ios xcode sdk mpnowplayinginfocenter

  

可能重复:
  iOS: Updating Media Information in the Background

我有一个从服务器传输音乐的应用程序,我想在用户锁定iPhone屏幕时显示正在播放的音乐的信息实际上我已经在网上找到了这个代码:

Class playingInfoCenter = NSClassFromString(@"MPNowPlayingInfoCenter");

if (playingInfoCenter) {
    MPNowPlayingInfoCenter *center = [MPNowPlayingInfoCenter defaultCenter];
    NSDictionary *songInfo = [NSDictionary dictionaryWithObjectsAndKeys:
                              @"Artist", MPMediaItemPropertyArtist,
                              @"Title", MPMediaItemPropertyTitle,
                              @"AlbumTitle", MPMediaItemPropertyAlbumTitle,
                              nil];
    center.nowPlayingInfo = songInfo;

}

但是我不知道在哪里注入这段代码我试图将它放在与播放按钮相关联的IBAction方法中,但是它没有用。 有没有人可以帮我这个?请。 提前谢谢。

0 个答案:

没有答案