Setting Background Color of Table Views
While setting the background color of a table view in grouped style works on the iPhone as intended, it does not show on the iPad:
self.tableView.backgroundColor = [UIColor yellowColor];
In addition a background view has to be initialized using the same color:
self.tableView.backgroundView = [[UIView alloc] init]; self.tableView.backgroundView.backgroundColor = self.tableView.backgroundColor;