美文网首页
TableView分割线顶不到头

TableView分割线顶不到头

作者: shalapovar | 来源:发表于2016-08-05 16:00 被阅读143次

TableView的分割线 默认与左边有一段距离,取消这个默认间距需实现两个方法

/**

*  tableView线条顶到头的方法

*/

-(void)viewDidLayoutSubviews

{

if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {

[self.tableView setSeparatorInset:UIEdgeInsetsMake(0,0,0,0)];

}

if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)]) {

[self.tableView setLayoutMargins:UIEdgeInsetsMake(0,0,0,0)];

}

}

-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath

{

if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {

[cell setSeparatorInset:UIEdgeInsetsZero];

}

if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {

[cell setLayoutMargins:UIEdgeInsetsZero];

}

}

相关文章

网友评论

      本文标题:TableView分割线顶不到头

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