gpt4 book ai didi

ios - CGGradient 在 iPad 1 和 2 上显示不正确

转载 作者:行者123 更新时间:2023-11-28 17:31:41 27 4
gpt4 key购买 nike

我一直在尝试为我的 iOS 应用程序的 UI 创建我自己的渐变。我首先使用了 CAGradientLayer,但我对“阶梯式”外观感到失望,所以我一直在尝试 CGGradient。

   - (void)drawRect:(CGRect)rect
{

CGContextRef currentContext = UIGraphicsGetCurrentContext();

CGGradientRef skyGradient;
CGColorSpaceRef rgbColorspace;
size_t num_locations = 3;
CGFloat locations[3] = { 0.0, .5, 1.0 };
CGFloat components[12] = { .106, .73, .93333, 1.,
0.0, 0.0 , 1.0, 1.,
.106, .73, .93333, 1. };

rgbColorspace = CGColorSpaceCreateDeviceRGB();
skyGradient = CGGradientCreateWithColorComponents(rgbColorspace, components, locations, num_locations);

CGRect currentBounds = self.bounds;
CGPoint topLeft = CGPointMake(0.0f, 0.0f);
CGPoint bottomRight = CGPointMake(CGRectGetMaxX(currentBounds), CGRectGetMaxY(currentBounds));
CGContextDrawLinearGradient(currentContext, skyGradient, topLeft, bottomRight, 0);

CGGradientRelease(skyGradient);
CGColorSpaceRelease(rgbColorspace);

}

我在正确显示渐变方面遇到问题。我有三台 iPad——每一代一台。渐变在 iPad 3 上看起来正确,但在 iPad 1 或 2 上却不正确。这真的很奇怪。我打算截屏并发布两个差异,但更奇怪的是,屏幕截图看起来一样(是的,两者的亮度相同)。

旧 iPad 上的颜色似乎真的褪色了。我知道 iPad 3 是视网膜显示屏,但我认为它一定不止于此。

Not a great picture, but you can still see a drastic difference.

最佳答案

正如 David Rönnqvist 所指出的,这个问题的答案是这些设备根本不会以相同的方式显示颜色。对此没有简单的解决方案,也许解决方案会过度杀戮。

关于ios - CGGradient 在 iPad 1 和 2 上显示不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10988279/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com