Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a long list of table view cells. When I attempt to get one of the frames down the list, I get something like: (0, 508) (56, 320) (x,y)(height, width)

I want to know these coordinates in regards to the current screen -- in the 320x480 range. I've tried doing things like 508 % 480 after getting the coordinates in terms of the self.view.window(via convertRange) but I'm still not seeing the results I'm expecting.

I initialize a view on top of the cell and then stretch out to fill the whole screen. This is no problem when the cell is at the top of the screen, but it results in a bad animation when the cell is lower down in the list.

share|improve this question

1 Answer

up vote 4 down vote accepted

Since UITableView is a subclass of UIScrollView, you can use contentOffset property to get how many pixels are from top of the table view to top of displayed content, then subtract that from cell's y position.

CGFloat relativeY = someCellFrame.origin.y - someTableView.contentOffset.y;
share|improve this answer
Works perfect, thanks! – joslinm Sep 13 '12 at 1:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.