UITableView问题清晰的颜色

时间:2011-01-19 07:09:36

标签: iphone uitableview

我有分组样式的tableview。当我将tableview背景颜色设置为清除颜色时,我会在tableview周围看到深黑色的角落。有没有办法解决这个问题,并删除那些黑暗的角落?

任何帮助都将不胜感激。

2 个答案:

答案 0 :(得分:9)

使用clearColor时,请使用以下内容:

[tableView setBackgroundView:nil];
[tableView setBackgroundColor:[UIColor clearColor]];
[tableView setOpaque:NO];

答案 1 :(得分:1)

您可以设置UIView并为其设置清晰的颜色。这对我有用。

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