我有分组样式的tableview。当我将tableview背景颜色设置为清除颜色时,我会在tableview周围看到深黑色的角落。有没有办法解决这个问题,并删除那些黑暗的角落?
任何帮助都将不胜感激。
答案 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;