UITableView scrolling for very large cells

Posted by Mike on Stack Overflow See other posts from Stack Overflow or by Mike
Published on 2010-04-14T21:57:28Z Indexed on 2010/04/14 22:13 UTC
Read the original article Hit count: 250

I have UITableView with very large cells with lots of content (more than one screen height). I need to scroll UITableView to a certain position within those cells. I've found method scrollToRowAtIndexPath:atScrollPosition:animated: which works just fine if you got small cells (less than one screen), then you can just command UITableView to scroll, so the needed cell appears at the top of the screen (for example). But this doesn't help at all when you got very large cells. I need UITableView to scroll to a certain position within my large cell, something like scrollToRowAtIndexPath but what accepts pixel offset in addition to cell number. Someone got any ideas? Or maybe ready solution... Would appreciate any help.

© Stack Overflow or respective owner

Related posts about iphone

Related posts about uitableview