I have a UIViewController that inherits from UITableViewContoller:
@interface AllProductsViewController : UITableViewController
And I need to redraw my table cells if the device has been rotated. Looks like I do not have access to viewDidRotate in a UITableViewController so what is the best approach to take in this scenario?
The UITableViewController inherits from UIViewController, so YES, you have access to those methods.