美文网首页iOS编程
iOS11之tableView顶部内容向下偏移35pt的问题

iOS11之tableView顶部内容向下偏移35pt的问题

作者: JxSr程知农 | 来源:发表于2019-08-15 11:08 被阅读0次
    1、原因不一定是下面这两个:
    (1)if (@available(iOS 11.0, *)) {
            _tblView.contentInsetAdjustmentBehavior != UIScrollViewContentInsetAdjustmentNever;
        }
    (2)_tblView.contentInset != UIEdgeInsetsZero;
    
    2、原因有可能是下面这个:
    //需将其中的UITableViewStyleGrouped改为UITableViewStylePlain.
    _tblView = [[UITableView alloc]initWithFrame:rect style:UITableViewStyleGrouped]; 
    
    

    相关文章

      网友评论

        本文标题:iOS11之tableView顶部内容向下偏移35pt的问题

        本文链接:https://www.haomeiwen.com/subject/pdiajctx.html