我一直试图这样做一段时间。我只是想删除你在这张照片上看到的圆角:
有谁知道怎么做?
[编辑1:细胞建筑]
我将UITableViewCell子类化为自己的布局。然后我在这些单元格中添加背景,如下所示:
UIImageView* imageView = [ [ UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320.0, 44.0)];
imageView.image = cellBackground;
cell.backgroundView = imageView;
答案 0 :(得分:3)
我需要编辑相应单元格的背景视图。 E.g。
UIView *bg = [[UIView alloc] initWithFrame:cell.frame];
bg.backgroundColor = [UIColor whiteColor]; // or any color
cell.backgroundView = bg;
[bg release];
答案 1 :(得分:1)
默认情况下,角落不会四舍五入,只是你知道。