传统的设置ios
if (IOSVERSION >= 7) { [[UINavigationBar appearance] setBarTintColor:[UIColor redColor]]; } else { [[UINavigationBar appearance] setBarTintColor:[UIColor redColor]]
]; }
在ios6下显示正常,可是在ios7下颜色却看起来有点失真!!!app
那是由于ios坑爹的加了translucent属性也就是半透明,我能够很负责人的说,你怎么设置都不起效,坑爹的模糊效果.spa
正确的姿式:code
[[UINavigationBar appearance] setBackgroundImage:[UIColor redColor] forBarMetrics:UIBarMetricsDefault];
简单的功能更见基础的重要!blog