I have a custom UITableView with a UIImageView as its background. I want to display some transparent cells in the table so that I can see the background image through the cell's background image.
So far, I'm setting the cell's backgroundView to a UIImageView with a custom alpha and setting the background image view's backgroundColor to [UIColor clearColor]. I'm also setting the cell's backgroundColor to [UIColor clearColor].
When the cell is initially drawn, I still see a white background. However, if I drag the cell off the screen, it's transparent when it comes back on. Anyone have any idea what's up with that?
Edit: Here's some code, though I don't think it really tells you anything more than what I said above. Some sensitive/irrelevant stuff is edited out.
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
if((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])) {
[self setBackgroundColor:[UIColor clearColor]];
...
_backgroundImageView = [[UIImageView alloc] initWithFrame:[[self contentView] bounds]];
[_backgroundImageView setAlpha:0.5];
[_backgroundImageView setOpaque:NO];
[_backgroundImageView setBackgroundColor:[UIColor clearColor]];
[self setBackgroundView:_backgroundImageView];
}
return self;
}
- (void)drawRect:(CGRect)rect {
[super drawRect:rect];
[_backgroundImageView setFrame:rect];
}
// in a different file
- tableView:cellForRowAtIndexPath: {
...
[cell setBackgroundColor:[UIColor clearColor]];
[cell setOpaque:NO];
return cell;
}
opaquetoNOas well as the cell itself. Didn't help. – Anshu Chimala Jul 21 '12 at 8:58drawRect:though... maybe I should be doing that somewhere else? – Anshu Chimala Jul 21 '12 at 9:04