//tableview底部线条去除
UIView *footer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREENWIDTH, 0.1)];
footer.backgroundColor = [UIColor whiteColor];
self.tableView.tableFooterView = footer;
//tableview底部线条去除
UIView *footer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREENWIDTH, 0.1)];
footer.backgroundColor = [UIColor whiteColor];
self.tableView.tableFooterView = footer;