up vote 3 down vote favorite
share [g+] share [fb]

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.

link|improve this question

44% accept rate
feedback

1 Answer

I Got it.

UIView *backView = [[[UIView alloc] initWithFrame:CGRectZero] autorelease];
backView.backgroundColor = [UIColor clearColor];
cell.backgroundView = backView;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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