//修改导航栏文字字体和颜色
nav.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName:[RGBColor colorWithHexString:@"#4b95f2"],NSFontAttributeName:[UIFont boldSystemFontOfSize:]};
//修改导航栏颜色
[[UINavigationBar appearance]setBarTintColor:[RGBColor colorWithHexString:@"#00E5EE"]];
05-11 13:24