Я использую CollectionView
и UIButton
.И я столкнулся с некоторой проблемой с моим кодом.Я хочу получить доступ collectionViewCell
при нажатии кнопки.И кнопка находится снаружи от collectionView
.Итак, как я могу получить к нему доступ?
if let cell = (sender as? UIButton)?.superview?.superview?.superview as? FavouriteVideosCell
{
let index = collectionview.indexPath(for: cell)
let video_id = arrayFavouriteVideo[(index?.row)!].video_id
RemoveVideoAPI(video_id: video_id)
}