自定义headview不会填满整个屏幕

时间:2015-10-15 09:08:53

标签: ios

在下图中,您可以看到我的headview未填满所有可用空间。

Custom headview

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

它的页眉不是显示的页脚。添加这些行可以解决您的问题。

-(CGFloat)tableView:(UITableView*)tableView heightForFooterInSection:  (NSInteger)section
{
   return 1.0;
}

-(UIView *)tableView:(UITableView*)tableView viewForFooterInSection:(NSInteger)section
{
   return [[UIView alloc] initWithFrame:CGRectZero] ;
}