UINavigationBar *appearance = [UINavigationBar appearance];
//IOS大于7.0
// 设置导航条背景颜色,在iOS7才这么用
[appearance setBarTintColor:[UIColor colorWithRed:0.291 green:0.607 blue:1.000 alpha:1.000]];
// 设置导航条的返回按钮或者系统按钮的文字颜色,在iOS7才这么用
[appearance setTintColor:[UIColor whiteColor]];
// 设置导航条的title文字颜色,在iOS7才这么用
[appearance setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor], NSForegroundColorAttributeName, [UIFont systemFontOfSize:17], NSFontAttributeName, nil]];
} else {
// 设置导航条的背景颜色,在iOS7以下才这么用
[appearance setTintColor:[UIColor colorWithRed:0.291 green:0.607 blue:1.000 alpha:1.000]];
}