Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用为幼儿播放视频。它使用 AVPlayer。在最近的更新中,Apple 实现了拖动视频视图以将其关闭的功能。这不适用于一直触摸屏幕的幼儿。
有谁知道如何禁用此功能?(代码在 Objective-C 中)
我没有现成的解决方案,但我会尝试为您指出一些您可以尝试的方向。
您是否尝试将方法AVPlayerViewController与委托AVPlayerViewControllerDelegate一起使用playerViewControllerShouldDismiss(AVPlayerViewController),它可能适用于您的情况。
AVPlayerViewController
AVPlayerViewControllerDelegate
playerViewControllerShouldDismiss(AVPlayerViewController)
作为最后的手段,您需要实现 AVLayerPlayer 并自己提供 UI。