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
I investigated it a little bit and found out that the cell backgroundColor is set by the Appearance system. So if all cells in your application have clear background, the easiest solution would be:
[[UITableViewCell appearance] setBackgroundColor:[UIColor clearColor]];
And even if they have different background, clear color seems to be the most convenient as the default one.