I’ve created a custom cell class using these instructions:
http://www.bdunagan.com/2009/06/28/custom-uitableviewcell-from-a-xib-in-interface-builder/
Everything worked great, except I have one small issue. The height of the background image of the cell is 100px. However when I launch the app, it seems to be using default height of cells, which is around 50px or so. How can I fix this? My custom cell is loaded from an XIB, and in that XIB the cell has the desired height of 100px, but it’s still using default height in simulator.
In your Table View Controller you need to override the heightForRowAtIndexPath and set the height to 100.0px as so: