- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
通过委托方法返回表头视图,返回值是一个UIView对象。
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
1. 再tab的style为plan下 需设置
if(@available(iOS15.0, *)) {
[UITableView appearance].sectionHeaderTopPadding = 0
}
2. 再grouped下 设置已经无效了 需设置表的表头高度
self.tableView.tableHeaderView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 0, CGFLOAT_MIN)]
注意:设置坐标系为zero 无法清楚默认多余高度
设置Excel表每行的抬头的 *** 作步骤如下:打开需要批量给每行记录添加表头的excel表。
然后我们在列末填充序号。
将序号复制、粘贴。
选中序号列,点击“数据”选项,再选择“排序”选项。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)