I\'ve implemented a custom table view cell class that inherit from UITableViewCell. The tableview contains a background image, so I want cell\'s background to b
UITableViewCell
Swift 1.2 Solution:
Just add an explicit definition for your cell's background color like so:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { // Configure the cell... cell.backgroundColor = UIColor.clearColor() return cell }