extension UITableViewCell{
func getIndexPath() -> IndexPath? {
guard let superView = self.superview as? UITableView else {
return nil
}
let indexPath = superView.indexPath(for: self)
return indexPath
}
}
'Swift > UITableView' 카테고리의 다른 글
[SWIFT]UITableView 좌 - 우 스와이프 버튼 추가 (0) | 2023.07.19 |
---|---|
[SWIFT]UITableView Cell Drag 이동 하기 (0) | 2023.07.19 |
[SWIFT]UITableView register 단순화 하기 (0) | 2023.06.15 |