Issue with uitableview cell background

ios7, uitableview

Solution

Try setting background color of your table view cell to clear color. Until IOS 7 default background was clear color. But with IOS 7 it has changed to White color. So you have to manually set it to clear color.

Problem

Ok, this is broken as of iOS 7 Beta 6. On startup, I changed the background of the table view to an image (it does the same thing if I set it to a color) and the table cells are white... When I select a cell, go to the next view, and then go back to this view... the cells are the same as the view background (except the cell I selected)... This is where 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 fine on iOS and below.

Original source