MPNowPlayingInfoCenter不显示上一个和下一个按钮

时间:2016-09-16 09:32:16

标签: ios avplayer avplayerviewcontroller mpnowplayinginfocenter

我正在使用AVPlayerViewController播放视频,我注意到在现在播放中心时,前一个和下一个按钮被替换为15秒来回寻找按钮。问题是我需要上一个和下一个按钮可见。我还将updatesNowPlayingInfoCenter属性设置为NO

请参阅下面的图片以便更好地理解:

当前用户界面:

enter image description here

通缉结果:

enter image description here

1 个答案:

答案 0 :(得分:0)

经过一番研究,我找到了一个解决方案:只是前后禁用MPSkipIntervalCommand

MPRemoteCommandCenter *rcc = [MPRemoteCommandCenter sharedCommandCenter];

MPSkipIntervalCommand *skipBackwardIntervalCommand = [rcc skipBackwardCommand];
[skipBackwardIntervalCommand setEnabled:NO];

MPSkipIntervalCommand *skipForwardIntervalCommand = [rcc skipForwardCommand];
[skipForwardIntervalCommand setEnabled:NO];