3

在 ios 7 中,我使用的是内置在图像视图中的单元格,它位于单元格图像视图后面,但我正在尝试类似 uitableview 自定义单元格中的布局子视图

- (void)layoutSubviews {
[super layoutSubviews];
self.imageView.frame = CGRectMake(5.0f , 5.0f, 50.0f, 50.0f);
self.imageView.contentMode = UIViewContentModeScaleAspectFit;
self.textLabel.frame = CGRectMake(60.0f, self.textLabel.frame.origin.y,   self.textLabel.frame.size.width, self.textLabel.frame.size.height);
}

图像视图设置正确,但图像视图侧的分隔线为空 如何在图像视图上方分隔线或自定义图像视图的唯一方法

4

1 回答 1

4

我在 viewdidload 中添加以下行

[self.tableviewName setSeparatorInset:UIEdgeInsetsZero];

现在分隔线完全显示

于 2014-03-18T04:01:57.837 回答