How can I get the frame of a table view cell in the coordinate space of the table view? How can I get the frame of a table view cell in the coordinate space of the table view? ios ios

How can I get the frame of a table view cell in the coordinate space of the table view?


Please use below code

let rectOfCell= tableView.rectForRowAtIndexPath(indexPath)let rectOfCellInSuperview = tableView.convertRect(rectOfCell, toView: tableView.superview)