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。