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

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

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

+ Recent posts