美文网首页iOS踩过的坑系列iOS UI
iOS踩过的坑之UITableView的footer和heade

iOS踩过的坑之UITableView的footer和heade

作者: Shaw1211 | 来源:发表于2019-04-24 13:56 被阅读0次

heightForFooterInSection以及heightForHeaderInSection方法中,如果想设置高度为0,不能直接返回0,可以设置返回0.01
例如

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

相关文章

网友评论

    本文标题:iOS踩过的坑之UITableView的footer和heade

    本文链接:https://www.haomeiwen.com/subject/lxcggqtx.html