在accessoryType + section索引后面的UITableViewCell backgroundColor

时间:2012-08-24 14:01:11

标签: ios uitableview

希望它在这张图片中可见:

我正在尝试在截面索引后面绘制背景,但不幸的是背景在截面索引后面是白色的,并且它也是白色的,其中绘制了UIAccessoryType(未图示)。

我正在使用UITableViewCell子类并使用:

设置背景
[self.contentView setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"cellBackgroundPattern"]]];

2 个答案:

答案 0 :(得分:0)

我相信self.contentView正如其名称所示,只是内容视图。请尝试self.backgroundColor(属性为UIView)或self.backgroundView

答案 1 :(得分:0)

self.contentView从不在accessory viewthumbnail image上绘制图片。

要使用单元格的背景颜色,请将图片绘制为backgroundColor或制作UIImageView的实例并将其设置为单元格的backgroundView