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
Write this in your cellForRowAtIndexPath method before return cell;
cell.backgroundColor = [UIColor clearColor];