2

我尝试使用此代码在锁屏和控制中心显示媒体信息,但它没有显示任何内容:

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];

}

我也设置FirstResponding了,但还是什么都没看到。

- (void) viewDidAppear: (BOOL) animated
{
    [super viewDidAppear:animated];
    [self becomeFirstResponder];
    NSLog(@"is first resp: %i",[self isFirstResponder]);

    [[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
    // Initialize the AVAudioSession here.

    [[UIApplication sharedApplication] endReceivingRemoteControlEvents];

}

- (BOOL) canBecomeFirstResponder
{
    return YES;
}

我该如何解决?谢谢

4

1 回答 1

1

您是否激活了如下所示的“音频、AirPlay 和画中画”?

在此处输入图像描述

于 2016-03-02T21:00:06.550 回答