iPhone: Setup static content of UITableView

Posted by Martin on Stack Overflow See other posts from Stack Overflow or by Martin
Published on 2010-05-12T15:19:38Z Indexed on 2010/05/12 15:24 UTC
Read the original article Hit count: 242

This guide from apple https://developer.apple.com/iphone/prerelease/library/documentation/UserExperience/Conceptual/TableView_iPhone/TableViewCells/TableViewCells.html (you need login) explains how to use "The Technique for Static Row Content" to use Interface Builder to setup the cells in a tableview.

I have some cells with different heights in my tableview. Without using the heightForRowAtIndexPath method everything get messed up. Do I still need to use this method or can I in some way setup the height of the cells inside the IB as I created them there?

Also when using the "The Technique for Static Row Content" from the guide you still need to use the cellForRowAtIndexPath to setup the cells even if they are created in IB. I would like to setup the full layout of the tableview with all cells in IB (drag the cells right into the tableview), is that possible in some way?

Thanks!

© Stack Overflow or respective owner

Related posts about iphone

Related posts about uitableview