cell去除多余分割线

321 查看

tableView调用

- (void)setExtraCellLineHidden: (UITableView *)tableView
{
    UIView *view         = [[UIView alloc]init];
    view.backgroundColor = [UIColor clearColor];
    [tableView setTableFooterView:view];
}