UITableView去除多余分割线

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

    

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

    v.backgroundColor = [UIColor clearColor];

    tableView.tableFooterView = v;

    

}


你可能感兴趣的:(ios)