美文网首页
让tableView的分割线左边置顶

让tableView的分割线左边置顶

作者: 嘻嘻来打我 | 来源:发表于2016-11-05 21:40 被阅读0次

    正常情况下,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的分割线左边置顶

          本文链接:https://www.haomeiwen.com/subject/wfyguttx.html