Change the color of empty table view cells?

ios, uitableview

Solution

You just set tableView's backgroundColor: `yourTableView.backgroundColor = [UIColor redColor];`

Problem

I changed the color of cells from the storyboard (did not use any code) but as you can see in this image: empty cells stay white as default. I want to change those empty cells to red also but I am having trouble figuring out. I also in my code setting `cell.backgroundColor = [UIColor redColor];` with no success.

Original source