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)
이렇게 테이블뷰의 특정 셀의 위치를 얻어 이러한 메뉴 버튼을 만들 수 있다.
'개발 > 아이오에스' 카테고리의 다른 글
swift] scrollview안에서 uibutton - 액션이(touchupInside) 먹히지 않음 (0) | 2021.07.29 |
---|---|
swift] 코드로 UIscrollView 구현하기 (0) | 2021.07.28 |
swift] KVO 사용 tableview의 높이 동적으로 할당 (0) | 2021.07.05 |
swift] 상황(조건)에 맞는 NSLayoutConstraint 처리 (0) | 2021.07.05 |
[swift] contains (0) | 2021.07.02 |