如何删除UITableViewCell的白色背景

时间:2009-08-26 16:23:23

标签: iphone

我想删除UITableViewCell的默认白色背景,就像我希望单元格的背景是透明的,以便它显示窗口的实际背景。

1 个答案:

答案 0 :(得分:7)

我知道了。

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