UITableView的分割线左对齐

自定义cell,在cell的layoutSubviews的方法中调用

[self setSeparatorInset:UIEdgeInsetsZero];
[self setLayoutMargins:UIEdgeInsetsZero];
[self setPreservesSuperviewLayoutMargins:NO];

ps: 当然也可以在tableview代理方法中分别调用,具体做法参考www.lai18.com/content/7860325.html

你可能感兴趣的:(UITableView的分割线左对齐)