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
You could also use the rectForRowAtIndexPath method to get the location of a UITableView by sending the indexPath for that.
rectForRowAtIndexPath
- (CGRect)rectForRowAtIndexPath:(NSIndexPath *)indexPath
So use as below:
CGRect myRect = [tableView rectForRowAtIndexPath:indexPath];