在 iOS15和iOS14 下设置UITableView为UITableViewStyleGrouped时,顶部会偏移35,设置下tableHeaderView就好了
UIView *View = [[UIView alloc]initWithFrame:CGRectMake(0, 0, kScreenWidth, 0.01)];
View.backgroundColor = [UIColor clearColor];
tableView.tableHeaderView = View;
在 iOS15和iOS14 下设置UITableView为UITableViewStyleGrouped时,顶部会偏移35,设置下tableHeaderView就好了
UIView *View = [[UIView alloc]initWithFrame:CGRectMake(0, 0, kScreenWidth, 0.01)];
View.backgroundColor = [UIColor clearColor];
tableView.tableHeaderView = View;
本文标题:UITableView顶部空白
本文链接:https://www.haomeiwen.com/subject/bxytxrtx.html
网友评论