iOS UINavigationBar色调颜色比颜色设置更暗

前端之家收集整理的这篇文章主要介绍了iOS UINavigationBar色调颜色比颜色设置更暗前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在为特定的导航控制器设置自定义外观:
//Set Cutom Nav Bar Appearance
[[UINavigationBar appearanceWhenContainedIn:[MyNavigationControllerClass class],nil] setBackgroundImage: nil forBarMetrics: UIBarMetricsDefault];
[[UINavigationBar appearanceWhenContainedIn:[MyNavigationControllerClass class],nil] setBarTintColor: self.tableView.backgroundColor];

显示导航控制器时,预期的颜色是RGB(247,247,247) – 我已经双重检查也是设置值时tableView.background颜色的值 – 但它在屏幕上显示为RGB(227,227,227). UINavigationBar的外观代理是否有不同的属性可以改变屏幕上显示的颜色?

谢谢!

编辑:

此外,如果我使用所需的颜色直接设置barTintColor,屏幕上显示的barTintColor仍然比预期更暗:

UIColor* navBarBackgroundColor = [UIColor colorWithRed: (247.0 / 255.0) green: (247.0 / 255.0) blue: (247.0 / 255.0) alpha: 1];
//Set Cutom Nav Bar Appearance
[[UINavigationBar appearanceWhenContainedIn:[MyNavigationControllerClass class],nil] setBarTintColor: navBarBackgroundColor];

以下是来自@Matt答案的解决方代码.希望它可以帮助某人

CGRect rect = CGRectMake(0.0f,0.0f,1.0f,1.0f);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context,[self.tableView.backgroundColor CGColor]);
CGContextFillRect(context,rect);
UIImage *navBarImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

//Set Cutom Nav Bar Appearance
[[UINavigationBar appearanceWhenContainedIn:[MyNavigationControllerClass class],nil] setBackgroundImage: navBarImage forBarMetrics: UIBarMetricsDefault];

解决方法

准确设置导航栏颜色的方法与您正在进行的操作完全相反.你给它一个色彩,没有背景图像.相反,给它一个由所需颜色的矩形组成的背景图像 – 没有色调.

还将其半透明设置为NO.

原文链接:https://www.f2er.com/iOS/332295.html

猜你在找的iOS相关文章