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, not relative to the UITableView. So if my UITableView is scrolled up, the location of each UITableViewCell should be higher on the screen, etc.
Given a UITableView , how can I find the location of a specific UITableViewCell
Share
You could also use the
rectForRowAtIndexPathmethod to get the location of aUITableViewby sending the indexPath for that.So use as below: