UITableView去除多余横线

方法一,简单粗暴一句话:
这样:

self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

或者这样:

self.tableView.tableFooterView = [UIView new];

方式二:

-(UIView*)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
    UIView *footView = [[UIView alloc]init];
    return footView;
}

方法三,去除横线,自定义cell,每个cell底部添加一条横线:

去除横线:

self.tableView.separatorStyle = UITableViewCellAccessoryNone;

而后cell加上横线。

你可能感兴趣的:(UITableView去除多余横线)