iOS中的translucent和automaticallyAdjustsScrollViewInsets用法
iOS中的translucent和automaticallyAdjustsScrollViewInsets用法
关于这两个属性我长话短说
具体的可以更具具体情况来设置:
- translucent用法
- automaticallyAdjustsScrollViewInsets用法
translucent用法
iOS7之后由于navigationBar.translucent默认是YES,
原点在(0,0)点
当设置NO的时候,原点坐标在(0,64)点
// 原点从(0,64)开始
self.navigationController.navigationBar.translucent = NO;
automaticallyAdjustsScrollViewInsets用法
在用的时候都会有两种情况咯
1:单独设置self.automaticallyAdjustsScrollViewInsets
// 原点从(0,64)开始
self.automaticallyAdjustsScrollViewInsets = NO;
2:单独self.automaticallyAdjustsScrollViewInsets = NO设置,原点就是(0,0)开始
// 原点从(0,0)开始
self.automaticallyAdjustsScrollViewInsets = NO;
3:和self.edgesForExtendedLayout联合设置,原点就是(0,64)开始
// 原点从(0,64)开始
self.automaticallyAdjustsScrollViewInsets = NO;
self.edgesForExtendedLayout = UIRectEdgeNone;
系统就会自动根据UINavigationBar和statusBar将view下移64,frame从(0,64)开始。这样,我们在布局内部控件的时候依然可以从(0,0)开始,而不必担心上部被UINavigationBar遮挡了
translucent属性默认是YES,也就是具有透明属性。所以我们看到的导航栏背景色与美工给的会有很明显的色差。
有两种解决方案:
1、取消透明度:
[[UINavigationBar appearance] setTranslucent:NO];
self.navigationController.navigationBar.translucent = NO;
这两种设置都可以,一种是全局的,一种是当你只需要在某个Controller上处理。
2、设置背景图片
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"navbg-ios7"] forBarMetrics:UIBarMetricsDefault]; // 设置这个会导致搜索框动画抖动
当translucent = YES,controller中self.view的原点是从导航栏左上角开始计算
当translucent = NO,controller中self.view的原点是从导航栏左下角开始计算
在translucent = YES的时候,Controller中改变self.view计算原点位置:
self.edgesForExtendedLayout = UIRectEdgeNone; //从navigationBar下面开始计算一直到屏幕tabBar上部
self.edgesForExtendedLayout = UIRectEdgeAll; //从屏幕边缘计算(默认)
self.edgesForExtendedLayout = UIRectEdgeTop; //navigationBar下面开始计算一直到屏幕tabBar上部
self.edgesForExtendedLayout = UIRectEdgeBottom; //从navigationBar下面开始计算一直到屏幕底部
在translucent = NO的时候,我试验设置self.edgesForExtendedLayout = UIRectEdgeAll;但是是没有效果的。如果你不想设置背景图,又需要self.view从navgationBar左上角为原点,就只能在对应的Controller:self.navigationController.navigationBar.translucent = YES;
设置这个属性,然后在viewWillDisappear方法中设置回NO,这样就不会影响外面的Controller。