在UITableView设置分隔线的开始?
UITableView具有分隔线,如下图所示。 他们不是从一开始就开始的。 看到图像中的红色框。 我想改变他们开始的地方。
我如何指定表格视图中分隔线的位置?
将表视图分隔符插入添加到零。
在cellForRowAtIndexPath
添加下面的代码:
if (cell.respondsToSelector("preservesSuperviewLayoutMargins")){ cell.layoutMargins = UIEdgeInsetsZero cell.preservesSuperviewLayoutMargins = false }
查看预览: