美文网首页
使UITableView的间隔线从顶部开始

使UITableView的间隔线从顶部开始

作者: Natsusama | 来源:发表于2015-11-18 11:01 被阅读83次

在viewDidLoad中加上如下代码:
<pre><code>if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {

    [self.tableView setSeparatorInset:UIEdgeInsetsZero];
    
}

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

</pre></code>
然后在UITableView代理方法中加入:
<pre><code>- (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];
    
  }

}
</pre></code>

相关文章

网友评论

      本文标题:使UITableView的间隔线从顶部开始

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