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

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

edgesForExtendedLayouthtml

The extended edges to use for the layout.ide

automaticallyAdjustsScrollViewInsets.net

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

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

代码示例:blog

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

    ... ...
}

参考:get

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/509280it

相关文章
相关标签/搜索