如何在自定义表格单元格类中绘制矩形?该单元格当前具有带有一些文本标签的背景图像。我想在每个标签后面画一个矩形,以便更容易阅读详细的背景图像。
我知道我可以设置标签的背景颜色,但我想在背景颜色和文本之间填充。如果可能,我很想知道如何! :)
我在Three20中对TTTableMessageItemCell进行了子类化,下面的方法被调用,您可以在其中使用单元格的子视图,
- (void)layoutSubviews {
[super layoutSubviews];
CGFloat padding = 16;
CGFloat boxWidth = self.contentView.width - 2*padding;
CGFloat textWidth = boxWidth - (padding*2);
CGFloat textHeight = 100;
CGFloat top = kTableCellSmallMargin;
// Position Heading Text
_titleLabel.frame = CGRectMake(padding, top, textWidth, _titleLabel.font.ttLineHeight);
top += _titleLabel.height;
// Position Detail Text
[self.detailTextLabel sizeToFit];
self.detailTextLabel.top = top+2*padding;
self.detailTextLabel.left = 2*padding;
self.detailTextLabel.width = textWidth;
self.detailTextLabel.height = 100;
}
我希望将矩形放在_titleLable和detailTextLabel标签后面。
修改 我已经能够使用以下内容添加正确的框
UIView *view = [[UIView alloc] init]; view.backgroundColor = [UIColor whiteColor]; view.frame = CGRectMake(padding, top, textWidth, textHeight+2*padding); [self insertSubview:view belowSubview:self.detailTextLabel];
它位于标签的顶部,我似乎无法将其置于其后......
修改 我正在将视图添加到错误的子视图中,用
修复它[[self.subviews objectAtIndex:0] insertSubview:view atIndex:0];
答案 0 :(得分:1)
您可以将标签添加到视图中,将这些标签添加到单元格中。
您可以使用insertSubview:belowSubview:
在标签后面添加视图。使用backgroundColor和右框架,它们将按照您的意图执行。
您也可以携带detailLabel to front