How to remove header and footer space from a UITableView?

前端 未结 9 1911
长情又很酷
长情又很酷 2021-02-02 11:02

I have a UITableView in the grouped style, and only one section. However there is some blank space above and below the table view that is shown when the user scrolls too far. Ho

9条回答
  •  情歌与酒
    2021-02-02 11:48

    Add this code:

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

提交回复
热议问题