让tableView的分割线左边置顶

正常情况下,tableViewcell的分割线会与左边有一定距离,如何让分割线的左边距为0?

在tableView正常显示的情况下,重写两个方法:
-(void)viewDidLayoutSubviews{
_tableView.separatorInset = UIEdgeInsetsZero;
_tableView.layoutMargins = UIEdgeInsetsZero;
}

-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
cell.separatorInset = UIEdgeInsetsZero;
cell.layoutMargins = UIEdgeInsetsZero;
}

即可实现cell的底部分割线与左边边距为0

你可能感兴趣的:(让tableView的分割线左边置顶)