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
The default background color of an UITableViewCell in iOS 7 is white.
You have to set the backgroundColor property somewhere in your code. For example, set it after you newly created the cell.
backgroundColor
cell.backgroundColor = [UIColor clearColor];