ios 怎么调整tableview 的表头

ios 怎么调整tableview 的表头,第1张

通过委托方法设置表头高度

- (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表。

然后我们在列末填充序号

将序号复制、粘贴。

选中序号列,点击“数据”选项,再选择“排序”选项。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11268586.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-14
下一篇 2023-05-14

发表评论

登录后才能评论

评论列表(0条)

保存