tags:

views:

101

answers:

1

Hello all,

I want to remove the default white background of UITableViewCell like I want the background of the cell being transparent so that it shows the actual background of the window.

+1  A: 

I Got it.

UIView *backView = [[[UIView alloc] initWithFrame:CGRectZero] autorelease];
backView.backgroundColor = [UIColor clearColor];
cell.backgroundView = backView;
rkb