Semantic Fish-eye zoom on table cells in UIKit?

Posted by niblha on Stack Overflow See other posts from Stack Overflow or by niblha
Published on 2010-04-27T21:41:44Z Indexed on 2010/04/27 21:43 UTC
Read the original article Hit count: 270

Filed under:
|
|
|

How would I go about implementing a table view that looks and works something as illustrated in the link below, with UIKit for the iPhone? http://img442.imageshack.us/img442/4177/uifisheyeview.png

I was thinking of using UITableView, and was looking a bit at the UITableViewDelegate methods

tableView:willDisplayCell:forRowAtIndexPath:
tableView:heightForRowAtIndexPath:

But it seems as the UITableView will modify the cell frames after these methods are called and just before the cells are drawn?

Maybe skipping the UITableView and go straight for some subclassing of a UIScrollView would be a better approach?

So my question is basically that I would just like some overall thought in what might be the best ways to use existing UIKit components to implement this type of table view.

© Stack Overflow or respective owner

Related posts about uitableview

Related posts about uikit