美文网首页
去除tableViewCell 分割线 边距

去除tableViewCell 分割线 边距

作者: 刘宇航iOS | 来源:发表于2016-06-29 17:17 被阅读266次
      tableView设置:
     //1.调整(iOS7以上)表格分隔线边距
        if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {
            self.tableView.separatorInset = UIEdgeInsetsZero;
        }
        //    2.调整(iOS8以上)view边距(或者在cell中设置preservesSuperviewLayoutMargins,二者等效)
        if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)]) {
            self.tableView.layoutMargins = UIEdgeInsetsZero;
        }
    
      cell 设置:
        cell.preservesSuperviewLayoutMargins = NO;
        [cell setLayoutMargins:UIEdgeInsetsZero];
    
    

    相关文章

      网友评论

          本文标题:去除tableViewCell 分割线 边距

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