代码如下设置但是iOS11上footer不显示(header同理)
-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
return kSixScaleWidth(8);
}
加上下面代码就行了
-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
return [[UIView alloc] init];
}
footer或header背景色设置
-(void)tableView:(UITableView *)tableView willDisplayFooterView:(UIView *)view forSection:(NSInteger)section
{
view.tintColor = [UIColor clearColor];
}
注意
tableview 的类型设置为UITableViewStylePlain,不然高度为默认值。
设置footer后tableview会去掉多余分割线
网友评论