tableView和mj_footer中间有距离

mj_footer的“已加载全部”和tableVIew的最后一个cell有一段空隙,检查所有适配都没问题,后找到原因
我的tableVIew的style是UITableViewStyleGroupe,应设置

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

你可能感兴趣的:(tableView和mj_footer中间有距离)