How to remove the white background of UITableViewCell

iphone

Solution

I Got it.

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

Problem

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.

Original source