CAGradientLayer showing as solid color

江枫思渺然 提交于 2019-12-21 06:17:46

问题


I'm trying to set a gradient background on a view, but my code below makes the UIView appear solid black. If i change the whiteColor to greenColor, the gradient is displayed properly. Changing the backgroundColor of the layer to greenColor makes the view appear solid green.

My guess is that i'm dealing with some kind of transparency-issue, but i can't figure to work around it.

CAGradientLayer *gradientLayer = [CAGradientLayer layer];
gradientLayer.colors = [NSArray arrayWithObjects:
                                     (id)[[UIColor whiteColor] CGColor],
                                     (id)[[UIColor blackColor] CGColor], nil];
gradientLayer.frame = CGRectMake(0, 0, 1, someView.frame.size.height);

UIGraphicsBeginImageContext(CGSizeMake(1, someView.frame.size.height));
[gradientLayer renderInContext: UIGraphicsGetCurrentContext()];

UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

someView.backgroundColor = [UIColor colorWithPatternImage: image];

回答1:


Your white and black colors are in grayscale colorspace. Try making them in RGB colorspace:

gradientLayer.colors = @[
    (id)[UIColor colorWithRed:0 green:0 blue:0 alpha:1].CGColor,
    (id)[UIColor colorWithRed:1 green:1 blue:1 alpha:1].CGColor
];

This should fix your issue, though I'm not sure of the Quartz mechanics behinds this.



来源:https://stackoverflow.com/questions/5448618/cagradientlayer-showing-as-solid-color

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!