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.
有什么方法可以将“跳过 30 分钟后退/前进”按钮添加到子类 AVPlayerViewController 使其看起来是原生的(就像播放/暂停按钮一样)?
实际上没有“好”的方法来做到这一点。Apple 使 AVPlayerViewController 保持简单,不幸的是不可扩展。
你唯一能做的就是设置一个自定义的覆盖视图。但这并不能解决问题。
并且文档说你不应该继承 AVPlayerViewController 这意味着你要么使用它并接受它,要么编写你自己的控制器来管理 AVPlayer 的实例并拥有你需要的一切。