在 tableView的代理方法
-(CGFloat)tableView:(UITableView*)tableView heightForHeaderInSection:(NSInteger)section
{
return 0.0001;
}中 返回一个很小的数值, 但是不能直接写 return 0 ;
-(UIView*)tableView:(UITableView*)tableView viewForHeaderInSection:(NSInteger)section
{
return nil;
}返回nil 就OK了 ,