我是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];
预期结果:
最佳答案
喜欢
步骤-1
创建一个名为UIView
的通用BackgroundView
,并将subview设置为cell.contentView
步骤-2
根据需要在BackgroundView
上设置框架。基于contentview的宽度
步骤-3
将Label
,Date
和Image
添加到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];