1

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

我正在尝试在部分索引后面绘制背景,但不幸的是,部分索引后面的背景是白色的,并且在绘制 UIAccessoryType 的位置也是白色的(未图示)。

我正在使用 UITableViewCell 子类并设置背景:

[self.contentView setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"cellBackgroundPattern"]]];
4

2 回答 2

0

self.contentViewaccessory view永远不要在and上绘制图像thumbnail image

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

于 2012-08-24T15:13:12.233 回答
0

self.contentView顾名思义,我相信只有内容视图。尝试只做self.backgroundColor( 的属性UIView) 或self.backgroundView.

于 2012-08-24T14:12:36.740 回答