美文网首页
TableView 去掉多余行数、IOS最后一行Cell系统分

TableView 去掉多余行数、IOS最后一行Cell系统分

作者: zcaaron | 来源:发表于2016-07-09 00:49 被阅读258次
    //去掉底部多余的表格线
     
        [self.tableView  setTableFooterView:[[UIView alloc] initWithFrame:CGRectZero]];
    
    

    <pre>

    IOS最后一行Cell系统分割线顶头

    使用说明

    //最后一行分隔线顶头显示
    
    static void setLastCellSeperatorToLeft(UITableViewCell* cell)
    {
        if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
            [cell setSeparatorInset:UIEdgeInsetsZero];
        }
        
        if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
            [cell setLayoutMargins:UIEdgeInsetsZero];
        }
        
        if([cell respondsToSelector:@selector(setPreservesSuperviewLayoutMargins:)]){
            [cell setPreservesSuperviewLayoutMargins:NO];
        }
    }
    
    

    相关文章

      网友评论

          本文标题:TableView 去掉多余行数、IOS最后一行Cell系统分

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