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

MPNowPlayingInfoCenter does't show previous and next buttons

我正在使用 AVPlayerViewController 播放视频,我注意到在正在播放的中心,上一个和下一个按钮被替换为 15 秒来回搜索按钮。问题是我需要上一个和下一个按钮可见。另外,我将 updatesNowPlayingInfoCenter 属性 设置为 NO.

请参阅下图以更好地理解:

当前 UI:

想要的结果:

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

MPRemoteCommandCenter *rcc = [MPRemoteCommandCenter sharedCommandCenter];

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

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