renzifeng / ZFPlayer

Support customization of any player SDK and control layer(支持定制任何播放器SDK和控制层)
MIT License
7.07k stars 1.75k forks source link

转屏播放完后ZFPlayerView无法移除的问题,我看demo上也这样 #1275

Open Geraldgan opened 2 years ago

Geraldgan commented 2 years ago
elegzh commented 2 years ago

我发现这是在iOS15以上才遇到的问题,老哥有解决吗

Geraldgan commented 2 years ago

您的邮件已收到。

elegzh commented 2 years ago

作者4.0.3已修复

Geraldgan commented 2 years ago

哇 可以 可以 感谢,我之前是直接在外面给他强制移除了一次

zebraciam commented 2 years ago

没有解决啊,还是这样啊。

Geraldgan commented 2 years ago

您的邮件已收到。

Geraldgan commented 2 years ago

嗯嗯 是的 当时我升级了 还是一样。我就在外面给他去除了。 在playerDidToEnd和playerPlayFailed回调里给他手动去除了下 //防止转屏播放结束后黑屏的问题 dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ @strongify(self); if (self.player.currentPlayerManager.view) { [self.player.currentPlayerManager.view removeFromSuperview]; } });

zebraciam commented 2 years ago

感谢。