iOS 去掉table前面的空格

if ([tableView respondsToSelector:@selector(setSeparatorInset:)]) {

        [tableView setSeparatorInset:UIEdgeInsetsZero];

    }

    if ([tableView respondsToSelector:@selector(setLayoutMargins:)]) {

        [tableView setLayoutMargins:UIEdgeInsetsZero];

    }

    UIView* footer = [[UIView alloc] init];

    [footer setBackgroundColor:[UIColor clearColor]];

    [tableView setTableFooterView:footer];

 

 

 if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {

        [cell setSeparatorInset:UIEdgeInsetsZero];

    }

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

        [cell setLayoutMargins:UIEdgeInsetsZero];

    } 

posted @ 2015-02-03 16:34  李伯波  阅读(203)  评论(0编辑  收藏  举报