在iOS 15.0以上版本
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
//返回的高度异常:
//解决方法:
if (@available(iOS 15.0, *)) {
_tableView.sectionHeaderTopPadding = 0;
}
在iOS 15.0以上版本
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
//返回的高度异常:
//解决方法:
if (@available(iOS 15.0, *)) {
_tableView.sectionHeaderTopPadding = 0;
}
本文标题:iOS UITableView 的 heightForHeade
本文链接:https://www.haomeiwen.com/subject/ogwtyrtx.html
网友评论