赞
踩
我自定义了一个导航控制器,然而使用的时候发现,当我从主界面push到二级界面的时候,视图被遮挡了,代码里边明明设置的是(0,0)开始的
- self.view.backgroundColor = UIColor.whiteColor()
- let label = UILabel(frame: CGRectMake(0, 0, 100, 100))
- label.backgroundColor = UIColor.greenColor()
- label.text = "hello"
- self.view.addSubview(label)
查阅资料发现,iOS7中,UIViewController增加了一个新的属性:edgesForExtendedLayout, 这个属性的默认值是UIRectEdgeAll。当你的容器是UINavigationController时,默认的布局就是从状态栏的顶部开始的,所以视图向上了66点,解决办法有两个:
1.设置edgesForExtendedLayout属性设置为UIRectEdgeNone
2.设置导航栏半透明属性UIBarStyleBlackTranslucent为NO
- self.edgesForExtendedLayout = UIRectEdge.None//方法1
- //self.navigationController?.navigationBar.translucent = false//方法2
- //下边是头文件的内容
- //public var translucent: Bool // Default is NO on iOS 6 and earlier. Always YES if barStyle is set to UIBarStyleBlackTranslucent
从上边头文件可以看出,iOS7以前translucent默认是no的,从iOS7开始就是YES了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。