개발/아이오에스
swift] 테이블뷰의 특정 셀의 좌표값 얻기
dev.jake
2021. 7. 9. 15:53
let rectOfCellInTableView = self.tableView.rectForRow(at: IndexPath(row: 5, section: 0)) //5번째 셀의 좌표 값
let rectOfCellInSuperview = self.tableView.convert(rectOfCellInTableView, to: self.view)
let viewPosition = CGPoint(x: rectOfCellInSuperview.origin.x, y: rectOfCellInSuperview.origin.y)
이렇게 테이블뷰의 특정 셀의 위치를 얻어 이러한 메뉴 버튼을 만들 수 있다.