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

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

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...