You can set backgroundColorcells contentViewwith this way:
cell.contentView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"image.png"]];
This will work if the cell is a derivative UITableViewCellor three20 TTTableViewCell(since they are derived from UITableViewCell)
source
share