Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to apply CAGradientLayer as mask of another CALayer?

Tags:

I have a view, which has a CALayer. When I create a CAGradientLayer and apply it as the mask of that view's CALayer, nothing happens. Why?

In -initWithFrame: of the view I do this:

CAGradientLayer *gradient = [CAGradientLayer layer]; gradient.frame = self.bounds; gradient.colors = [NSArray arrayWithObjects:(id)[[UIColor blackColor] CGColor], (id)[[UIColor whiteColor] CGColor], nil]; //[self.layer insertSublayer:gradient atIndex:0]; self.layer.mask = gradient; 

If I replace

self.layer.mask = gradient; 

with

[self.layer insertSublayer:gradient atIndex:0]; 

then I see the gradient. It's from black to white.

What's the trick?

like image 723
Proud Member Avatar asked May 30 '12 10:05

Proud Member


1 Answers

The mask property on CALayer uses the alpha component of the mask layer to determine what should be visible and not. Since both of your colors (black and white) are fully opaque (no transparency) the mask has no effect. To fix this you should change one of the colors to a clear color:

gradient.colors = [NSArray arrayWithObjects:(id)[[UIColor blackColor] CGColor],                                              (id)[[UIColor clearColor] CGColor], nil]; 

That's the "trick" :D

like image 104
David Rönnqvist Avatar answered Sep 30 '22 19:09

David Rönnqvist