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.
我是使用 AVKit 的新手,想知道是否可以将播放器屏蔽到 UIView 上。所以视频的帧就是单元格的帧。
如果是这样,我将在哪里/如何实现这一点。
此外,
如果您知道任何有用的 AVKit 快速入门指南或教程。
是的,基本上你所要做的就是调用self.view.addSubview(AVPlayerLayer),这是一个APPlayer的层;实例化单元格视图后,请确保AVPlayer.frame = view.bounds
self.view.addSubview(AVPlayerLayer)
AVPlayer.frame = view.bounds