答案 0 :(得分:0)
它的页眉不是显示的页脚。添加这些行可以解决您的问题。
-(CGFloat)tableView:(UITableView*)tableView heightForFooterInSection: (NSInteger)section
{
return 1.0;
}
-(UIView *)tableView:(UITableView*)tableView viewForFooterInSection:(NSInteger)section
{
return [[UIView alloc] initWithFrame:CGRectZero] ;
}