方法一:
-(void)setExtraCellLineHidden: (UITableView *)tableView {
UIView *view = [UIView new];
view.backgroundColor = [UIColor clearColor];
[tableView setTableFooterView:view];
}
方法二:
_chatListTableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];