ios 怎么调整tableview 的表头
发布网友
发布时间:2022-04-25 05:21
我来回答
共2个回答
热心网友
时间:2023-10-29 15:52
通过委托方法设置表头高度
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
通过委托方法返回表头视图,返回值是一个UIView对象。
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
热心网友
时间:2023-10-29 15:52
适当调整table的高度可以把那个灰条隐藏掉的,我也是遇到这个问题,你试试看