如果你一次又一次地寻找,你将通过AVPlayer的“currentTime”方法得到错误的当前播放时间。
如果不寻求,AVPlayer的“currentTime”就可以了。但是,我们的用户经常会寻求,我们将失去正确的当前时间。不幸的是,当前时间对我们的业务非常重要。我已经在stackoverflow上研究了与问题相关的每个页面。
没有答案。无可能的解决方案不知道。
Stackoverflow是一个非常好的网站,供程序员讨论难题。我仍然对你抱有希望,天才们。
AVPlayerItem *thePlayerItem = [self.player currentItem];
if (thePlayerItem.status == AVPlayerItemStatusReadyToPlay)
{
CMTime nowTime = self.player.currentTime;
}
答案 0 :(得分:0)