Reputation: 5686
just like in other normal programming languages... we can for example override the OnPaint() of the control... can we do the same in xcode/cocoa touch/objective-c puzzle?
With no disrespect for the people who like it of course, and see that it's a limitless framework.
Upvotes: 0
Views: 193
Reputation: 52237
there a few ways of customizing UITabelViewCells. Subclassing is just one.
Table View Programming Guide for iOS
Interessting Chapters:
Upvotes: 2
Reputation: 170859
UITableViewCell is a UIView subclass so you can override any UIView methods - including drawRect:
method to perform whatever custom drawing you want to do...
Upvotes: 2