У меня есть UICollectionView, и я добавляю все видео из моей библиотеки фотографий в массив и отображаю их в CollectionViewCells.
Я хочу иметь возможность выбрать видео из этого UICollectionView.
Как мне этого добиться? .THANKS
это просто.Вы должны использовать метод 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 }