处理iOS 11下 tableView为UITableViewStyleGrouped Style时 内容下移

在 tableView的代理方法

-(CGFloat)tableView:(UITableView*)tableView heightForHeaderInSection:(NSInteger)section

{

    return 0.0001;

}中 返回一个很小的数值, 但是不能直接写 return 0  ;


-(UIView*)tableView:(UITableView*)tableView viewForHeaderInSection:(NSInteger)section

{

    return nil;

}返回nil 就OK了 ,

你可能感兴趣的:(处理iOS 11下 tableView为UITableViewStyleGrouped Style时 内容下移)