从UICollectionView中选择视频?

时间:2019-03-26 19:10:07

标签: ios swift uicollectionview

我有UICollectionView,我将照片库中的所有视频添加到数组中,并显示在CollectionViewCells中。

我希望能够从此UICollectionView中选择视频。

我该如何实现?谢谢

1 个答案:

答案 0 :(得分:0)

很简单。您应该使用“ didSelectItemAt indexPath”方法:

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
    let cell = collectionView.cellForItem(at: indexPath)
    // and now you access your view that is in the cell

}