Given a UITableView, how can I find the location of a specific UITableViewCell? In other words, I want to get its frame relative to my iPhone screen, n
UITableView
UITableViewCell
Swift-version of Tomasz and Jhaliya's answers in case anyone (else) struggles with this:
var cellRect = tableView.rectForRow(at: indexPath) cellRect = cellRect.offsetBy(dx: -tableView.contentOffset.x, dy: -tableView.contentOffset.y)