I looked at Apple's UITableView class documents and delegated the link, but couldn't find a way to explicitly set the table header height.
I set the table cell height using the following delegate:
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
and set the height of the section header / footer using the following delegates.
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section -(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
Can someone help me set the height of the header / footer of the table?
Thank.
iphone uitableview
applefreak Apr 7 2018-11-11T00: 00Z
source share