Well, it's broken like on iOS 7 Beta 6.
At startup, I changed the background of the table view to an image (it does the same if I set it to color), and the table cells are white ...
When I select a cell, go to the next view, and then return to this view ... the cells are the same as the background of the view (except for the cell I selected) ...
Here I set the background ...
- (void)viewWillAppear:(BOOL)animated { pacListTableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"dotted-pattern.png"]]; pacListTableView.backgroundView = nil; [super viewWillAppear:animated];
}
Any ideas? It works great on iOS and below.
source share