I've been following a tutorial that manipulates a uitableview from a uiviewcontroller to generate nicely styled cells.
I was wondering is it possible to do same to a class that subclasses uitablewcontroller instead of uiviewcontroller. The user uses code like:
tableView.rowHeight = 50;
tableView.backgroundColor = [UIColor clearColor];
In the viewdidload method. I would like to do the same but again in a uitableview sub class. I tried to do
self.rowHeight = 50;
But this didn't work. Does anyone know how I can implement this?
Thanks a million!
This is the actual tutorial site: http://blog.atrexis.com/index.cfm/2009/1/6/iPhone--Customize-the-UITableCellView