在对应的控制器添加以下方法即可
- (void)setExtraCellLineHidden: (UITableView *)tableView { UIView * view = [UIView new]; view.backgroundColor = [UIColor clearColor]; [tableView setTableFooterView:view]; }
如何去掉tableView多余分割线
原文:http://www.cnblogs.com/shaohuaios/p/4041828.html