我是iOS的新手,我有一个分组的表格视图,如下一节一行。如何设置单元格的左右边距?

这是我为边框设置的代码...

[cell.layer setBorderColor:[UIColor colorWithRed:0.00 green:0.60 blue:1.00 alpha:1.0].CGColor];
[cell.layer setBorderWidth:1.0f];
[cell.layer setCornerRadius:5];

ios - 如何为表格单元格部分添加左右边距?-LMLPHP

预期结果:
ios - 如何为表格单元格部分添加左右边距?-LMLPHP

最佳答案

喜欢

步骤-1

创建一个名为UIView的通用BackgroundView,并将subview设置为cell.contentView
步骤-2

根据需要在BackgroundView上设置框架。基于contentview的宽度

步骤-3

LabelDateImage添加到BackgroundView的子视图中。

步骤-4

然后为BackgroundView设置图层,您将得到最终答案

[cell.BackgroundView setBorderColor:[UIColor colorWithRed:0.00 green:0.60 blue:1.00 alpha:1.0].CGColor];
[cell.BackgroundView setBorderWidth:1.0f];
[cell.BackgroundView setCornerRadius:5];

10-08 15:33