Swift/UICollectionView

[SWIFT]UICollectionViewCell Extention IndexPath 구하기

삽질중 2023. 4. 26. 15:47

컬렉션뷰에서 셀에서 자신의 IndexPath를 리턴한다. 

어디에서 사용했는지 기억이 안남.. ㅜㅜ

extension UICollectionViewCell{
    
    func getIndexPath() -> IndexPath? {
        guard let superView = self.superview as? UICollectionView else {
            return nil
        }
        let indexPath = superView.indexPath(for: self)
        return indexPath
    }
}