加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Swift-解决Navigation导航栏遮挡住view内容的问题

发布时间:2020-12-14 01:34:57 所属栏目:百科 来源:网络整理
导读:Swift-解决NavigationBar遮挡住view内容的问题 edgesForExtendedLayout The extended edges to use for the layout. automaticallyAdjustsScrollViewInsets A Boolean value that indicates whether the view controller should automatically adjust its sc

Swift-解决NavigationBar遮挡住view内容的问题

edgesForExtendedLayout

The extended edges to use for the layout.

automaticallyAdjustsScrollViewInsets

A Boolean value that indicates whether the view controller should automatically adjust its scroll view insets.

extendedLayoutIncludesOpaqueBars
A Boolean value indicating whether or not the extended layout includes opaque bars.

代码示例:

override func viewDidLoad() {
    super.viewDidLoad()

    // Do any additional setup after loading the view.
    //解决 NavigationBar 挡住 view 内容的问题
    //将edgesForExtendedLayout设置成UIRectEdgeNone,表明View是不要扩展到整个屏幕的
    self.edgesForExtendedLayout = UIRectEdge.None

    //打印查看:automaticallyAdjustsScrollViewInsets默认为true
    //print(self.automaticallyAdjustsScrollViewInsets.boolValue)
    //self.automaticallyAdjustsScrollViewInsets

    ... ...
}

参考:

http://www.cocoachina.com/bbs/read.php?tid=153502
http://www.cocoachina.com/bbs/read.php?tid-195157-page-e-fpage-705.html
http://my.oschina.net/u/2407613/blog/509280

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读