IOS 控件

// 为 tableView 添加footview,去掉多余的横线。
- (void)setTableFooterView:(UITableView *)tb {
    if (!tb) {
        return;
    }
    
    UIView *view = [[UIView alloc] init];
    view.backgroundColor = [UIColor whiteColor];
    [tb setTableFooterView:view];
}

调用:

 
[self setTableFooterView:_addressTableView];
 
原文地址:https://www.cnblogs.com/ziyeSky/p/4150352.html