views:

37

answers:

1

Is it bad practice/not efficient to draw UITableViewCell in IB vs drawing in code?

A: 

Not at all - Apple recommend it and provide an example of how to do it. See Table View Programming Guide - scroll down to Loading Custom Table-View Cells From Nib Files - just make sure you follow the other recommendations regarding use of transparency, cell reuse, etc.

Adam Eberbach