
正文
设置UITableView section间距
提示:扫一扫查出行【扫一扫了解最新限行尾号】
复制提示
- (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即为所设置的间距






