我一直在尝试在我的 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 是视网膜显示器,但我认为它肯定不止于此。