美文网首页
TableView 分割线

TableView 分割线

作者: 未来的自己在哪里 | 来源:发表于2015-12-15 09:41 被阅读236次

**TableView 分割线从边框顶端开始 **

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

  if ([cell respondsToSelector:@selector(separatorInset)]) {
    [cell setSeparatorInset:UIEdgeInsetsZero];
  }

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

相关文章

网友评论

      本文标题:TableView 分割线

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