How to remove white background UITableViewCell

I want to remove the default white background from a UITableViewCell, since I want the cell background to be transparent so that it displays the actual background of the window.

+5
iphone
source share
1 answer

I did it.

UIView *backView = [[[UIView alloc] initWithFrame:CGRectZero] autorelease]; backView.backgroundColor = [UIColor clearColor]; cell.backgroundView = backView; 
+7
source share

All Articles