记录一下。。tableview去掉多余cell

来源:互联网 发布:淘宝直通车显示原价 编辑:程序博客网 时间:2024/04/30 16:33

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

 (2014-11-21 16:05:12)
转载
标签: 

美食

 

    //去掉底部多余的表格线

 

    [tableView setTableFooterView:[[UIView alloc] initWithFrame:CGRectZero]];


//最后一行分隔线顶头显示

//http://stackoverflow.com/questions/25770119/ios-8-uitableview-separator-inset-0-not-working

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];

    }

}

0 0