</pre><pre name="code" class="objc">first method:
- (void)viewDidLoad{
[super viewDidLoad];
//此处写入让其不显示下划线的代码
self.tableView.tableFooterView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 0, 0)];`
}
sencond method:
[super viewDidLoad];
//此处写入让其不显示下划线的代码
self.tableView.tableFooterView = [[UIView alloc]init];
}