美文网首页
UITableView顶部空白

UITableView顶部空白

作者: liangsl | 来源:发表于2021-11-26 08:51 被阅读0次

    在 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