I have a simple table view, I can change the colors of cells, but when trying to change the color of Table View (Background part) it is not working... I tried it via Storyboard.
use this code for change tableView color
override func viewDidLoad() { super.viewDidLoad() // define tableview background color self.tableView.backgroundColor = UIColor.clearColor() }
for change tableView cell color
cell.backgroundColor = UIColor.clearColor()