巴扎黑2017-04-17 13:19:59
首先我觉得你要先把背景颜色设置好,这样你不会把section的分割线或者tableview的背景颜色混淆
通常我们在做自定义的cell或者section header and footer,我们尽量用一个高度为1-3point的view来代替,这样我的话我们就有更多可以操控的空间。就是我们通常说的障眼法
如果你还解决不了最好发代码上来
高洛峰2017-04-17 13:19:59
+ (void)hideEmptySeparators:(UITableView *)tableView
{
UIView *v = [[UIView alloc] initWithFrame:CGRectZero];
[tableView setTableFooterView:v];
}
lz 你试试在viewDidLoad 的时候调用这段代码?