gpt4 book ai didi

swift - 将 AVPlayerLayer 引用传递到层次结构中

转载 作者:行者123 更新时间:2023-11-28 06:17:58 24 4
gpt4 key购买 nike

我有一个位于 collectionView 单元中的 AVPlayer,它位于 collectionView 中,位于 collectionView 单元中。

总而言之,我的每个单元格中都有一个 Collection View 。在该 Collection View 中是三个单元格。其中之一包含 AVPlayer。

我想要它,以便当用户点击播放器时,单元格内的视频动画覆盖整个屏幕。

我最初尝试从单元格内访问 keywindow,但是,因为播放器位于 View 层次结构中的位置。它不能超出它所在的 collectionView 的边界。

最初向我推荐的是,当点击时,删除 AVPlayer 并将 PlayerLayer 的引用传递给 Root View Controller 。但是,我在这样做时遇到了麻烦。这是我第一次不得不在层次结构中“向上”发送引用。

所以我想主要的问题是:

我该如何在 View 层次结构中向上发送 playerLayers 引用。

也可以在点击之前引用 playerLayers 的初始位置,以便我可以无缝地制作动画过渡。

有什么建议吗?

最佳答案

How exactly do I send the playerLayers reference up in the view hierarchy.

通过授权。点击 CollectionViewCell 时,将调用 didSelectItemAt(IndexPath) 委托(delegate)函数。您的 AVPlayer 应该位于某个自定义单元格中(本例中为 AVPlayerCVCell),并且它具有 AVPlayer 属性。检查所选单元格是否为 AVPlayerCVCell,然后您可以将 Root View Controller 的单个 AVPlayer 设置为单元格的单个 AVPlayer。 (可能必须将该单元格的播放器设置为 nil 或某种其他形式的清理)。注意:以下语法可能略有偏差,但所有内容都在 the Apple UICollectionView docs. 中有详细记录

func collectionView(UICollectionView, didSelectItemAt: IndexPath){
if let playerCell = collectionView.cellForRowAt(indexPath) as? AVPlayerCVCell {
let player = playerCell.player

//Do something with player
self.mainPlayer = player
}
}

self 是您的根 Controller 。或者您可以有更多的委托(delegate)层,但这将是访问玩家的方式。

至于动画,我会研究convert(rect: to view:)将一个 View 坐标系转换为另一个。您可以获得相对于根 Controller 的单元格坐标,将根 Controller 主 avPlayer 框架设置为该矩形,然后将动画显示为全屏。

关于swift - 将 AVPlayerLayer 引用传递到层次结构中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44599262/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com