Cell의 indexPath
let indexPath = tableView.indexpath(for: cell)
Cell 내부에 있는 객체의 위치를 indexPath로 변환
// 객체를 button(버튼)이라고 가정할 경우
let selectedButtonPositon: CGPoint = button.convert(.zero, to: tableView)
guard let selectedIndexPath = tableView.indexPathForRow(at: selectedButtonPositon) else { return }