- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据文档,willStop 和 didStop 委托(delegate)方法以及 restoreUserInterfaceForPictureInPictureStopWithCompletionHandler 在 AVPictureInPictureController 关闭时被调用,无论它是如何关闭的。如何判断 Controller 是通过“X”按钮关闭还是通过其他按钮返回正常播放?
最佳答案
X键和恢复键的区别是:
点击恢复画中画按钮将触发
"pictureInPictureController(_:restoreUserInterfaceForPictureInPictureStopWithCompl etionHandler:)"
"pictureInPictureControllerWillStopPictureInPicture"
"pictureInPictureControllerDidStopPictureInPicture"
虽然点击关闭按钮将跳过 restoreUserInterface 回调并直接转到
"pictureInPictureControllerWillStopPictureInPicture"
"pictureInPictureControllerDidStopPictureInPicture"
因此您可以使用 Bool 标志来检查 willStop/DidStop 是否调用了 restoreUserInterface。
AVPictureInPictureViewController 中还有一个 pictureInPictureSuspended
属性,但我尝试检查它的值,发现在这两种情况下它总是返回 false,所以我必须使用上面的技巧来检查用户是否点击了恢复或关闭按钮。
关于ios - 关闭 AVPictureInPictureController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36610852/
使用 AVPlayer 创建自定义视频播放器时+ AVPlayerLayer + AVPictureInPictureController对于运行 iOS 14 (beta 7) 的 iPhone,当
根据文档,willStop 和 didStop 委托(delegate)方法以及 restoreUserInterfaceForPictureInPictureStopWithCompletionHa
对于默认模式,当用户启动画中画时,小窗口从最新的位置开始(latest pip window closed position)。 有没有办法设置起始位置,例如:左上角、右上角、左下角、右下角? 最佳答
我在AVPPlayer中使用了AVPictureInPictureController,并将其初始化为AVPlayerLayer。 - (id)initWithFrame:(CGRect)frame
我需要能够访问 WKWebView 的原生 AVPictureInPictureController 的委托(delegate)回调方法 pictureInPictureControllerDidSt
我是一名优秀的程序员,十分优秀!