Выбрать видео из UICollectionView?

#ios #swift #uicollectionview

#iOS #swift #uicollectionview

Вопрос:

У меня есть UICollectionView, и я добавляю все видео из моей библиотеки фотографий в массив и отображаю их в ячейках CollectionViewCells.

Я хочу иметь возможность выбирать видео из этого UICollectionView.

Как мне этого добиться? . Спасибо

Комментарии:

1. developer.apple.com/documentation/uikit/uicollectionview

Ответ №1:

это просто. вы должны использовать метод «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

}