设置UITableView section间距

时间:2021-09-05 20:44:57
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 0.0;
} - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
return 5.0;
} - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(,, ,)];
view.backgroundColor = [UIColor clearColor];
return view;
}

5即为所设置的间距