Как получить UICollectionViewCell SuperView как UICollectionView - PullRequest
0 голосов
/ 18 мая 2019

Я пытаюсь получить indexPath UICollectionViewCell внутри класса CollectionViewCell.Я создал расширение для этого, но оно возвращает ноль

Я попробовал этот код

extension UICollectionViewCell{

    var collectionView:UICollectionView?{
        return superview as? UICollectionView
    }

    var indexPath:IndexPath?{
        return collectionView?.indexPath(for: self)
    }
}

Он возвращает ноль для superview as? UICollectionView

...