UITableView 中有一種比較常用的樣式 UITableViewStyleGrouped,有時(shí)我們需要隱去 section 頭尾,比較常用的方法如下:
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 0.1f;
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
return 0.1f;
}
但是在 iOS 11 中卻不行,還需要實(shí)現(xiàn)下面的操作:
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
return nil;
}
-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
return nil;
}