I need some drawings in my tableview. How can i do this. Any help will be greatly appreciated!!
A:
Write a custom UITableViewCell. Google for "custom UITableViewCell" and choose a tutorial for your taste (Interface Builder centric or a code centric)
tequilatango
2009-09-09 07:27:09
A:
Subclass UITableViewCell and use CGContext to draw on the contentView (or the backgroundView/selectedBackgroundView if necessary). You can also draw on the header/footer of the table or on the header/footer of each section (check the UITableView docs on how to access them)
TehJabbit
2009-09-09 14:10:56