vote up 3 vote down star
2

Hi,

I'm trying to set the background color of a UITableViewCell to transparent. But nothing seems to work. I have some images/buttons inside the tableViewCell and I would like to make the white grouptableview background dissapear to get a 'floating' effect for the images and buttons (as if they were not inside the tableview).

Any idea how this could be accomplished?

flag

75% accept rate

5 Answers

vote up 7 vote down check

If both the other options didn't work try this

UIView *backView = [[[UIView alloc] initWithFrame:CGRectZero] autorelease];
backView.backgroundColor = [UIColor clearColor];
cell.backgroundView = backView;
link|flag
Thanks a lot! This solution is perfect! – levi Jun 18 at 3:57
myTable.backgroundColor = [UIColor clearColor]; worked for me! Thanks – sjobe Nov 5 at 14:21
This worked for me as well, although I additionally had to use: cell.backgroundColor = [UIColor clearColor]; – Mirko Froehlich Nov 10 at 7:27
vote up 1 vote down

You can look at a short tutorial I wrote about Creating Unique Looking Table with Custom Cells that may provide some insight.

John

iPhoneDevTips

link|flag
vote up 0 vote down
viewCell.contentView.backgroundColor = [UIColor clearColor];
link|flag
Just tried using this code after creating the cell, but it doesn't do anything. is there a specific place where it should be called? – levi Jun 17 at 17:09
Should work, you need to make sure you don't have any opaque views in between you tableviewcells and whatever background you want to see. – monowerker Jun 17 at 17:18
You can try setting tableView.backgroundColor = [UIColor redColor]; if you see the red, nothing is in the way... – monowerker Jun 17 at 17:20
There might be a viewCell.backgroundView.backgroundColor you need to set to clearColor as well... – monowerker Jun 17 at 17:22
set tableView to [UIColor redColor]; but the cell is still the default white. Setting the color of the cell seems to work with a color other than clearColor e.g.[UIColor blueColor] , but only if it's set later (not after the creation of the cell) in - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath – levi Jun 17 at 17:41
show 1 more comment
vote up 0 vote down

Start with these articles to get the background correctly setup:

http://howtomakeiphoneapps.com/2009/03/how-to-add-a-nice-background-image-to-your-grouped-table-view/

http://pessoal.org/blog/2009/02/25/customizing-the-background-border-colors-of-a-uitableview/

Then try all the following lines:

[[cell contentView] setBbackgroundColor:[UIColor clearColor]];
[[cell backgroundView] setBbackgroundColor:[UIColor clearColor]];
[cell setBbackgroundColor:[UIColor clearColor]];

There is more than just one view hiding in a UITableViewCell. This should make all of the ones in your way clear.

link|flag
vote up 0 vote down

I had a problem where my custom tableviewcell backgroundimage was overlaid with a white label background, i tried everything and finally setting background to clear color in the viewWillAppear did the trick.

      - (void)viewWillAppear:(BOOL)animated
    {
[super viewWillAppear:animated];
    self.tableView.backgroundColor = [UIColor clearColor]; // if this is not here, cell background image is covered with a white rectangle :S
    }

and in the rowForCellAtIndexPath I set the background image:

 if(!cell) {
	cell = [[[UITableViewCell alloc] initWithFrame: ...
	UIImageView *cellBG = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"cellbg.jpg"]];
	[cell setBackgroundView:cellBG];
	[cellBG release];
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.