Here is the situation,
I have UIViewController class with a UITableView outlet. I would like to modify / style the cell. I believe I can do this with UITableViewCells tableviewCellWithReuseIdentifier method. Since my class is not a UITableViewController it doesn't have this method. How can I use this method from the UIViewController class.
Also I know I can create a custom UITableViewCell class and instantiate it instead of a regular UITableViewCell class but is there anyway that I can do this in the UIViewController class?
Thanks, Joe