UITableView 隐藏没有数据线条

[self hideExcessLine:self.tableView];

-(void)hideExcessLine:(UITableView *)tableView{

    UIView *view=[[UIView alloc] init];
    view.backgroundColor=[UIColor clearColor];
    [tableView setTableFooterView:view];
}

你可能感兴趣的:(ios,uitableview)