컬렉션뷰에서 셀에서 자신의 IndexPath를 리턴한다.
어디에서 사용했는지 기억이 안남.. ㅜㅜ
extension UICollectionViewCell{
func getIndexPath() -> IndexPath? {
guard let superView = self.superview as? UICollectionView else {
return nil
}
let indexPath = superView.indexPath(for: self)
return indexPath
}
}
'Swift > UICollectionView' 카테고리의 다른 글
[SWIFT]UICollectionView register 단순화 하기 (0) | 2023.06.15 |
---|---|
[SWIFT]UICellectionView RefreshControl 추가하기 (0) | 2023.04.26 |
[SWIFT]현재 화면 중앙에 보여지고 있는 Cell의 IndexPath가져오기 (0) | 2023.04.26 |
[SWIFT]UICollectionView 백그라운드 Empty Message 추가 (0) | 2023.04.26 |
[SWIFT]register / dequeueReusableCell 편하게 사용하기 (0) | 2023.04.26 |