我有UICollectionView,我将照片库中的所有视频添加到数组中,并显示在CollectionViewCells中。
我希望能够从此UICollectionView中选择视频。
我该如何实现?谢谢
答案 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
}