我希望创建一个带圆角的CAGradientLayer
。我不能使用.cornerRadius
,因为我想只绕过前两个角。此外,我无法使用.mask
因为我想在之后截取它,renderInContext
不支持CALayer
个屏蔽。
我怎么能:
CALayer
,而不使用蒙版或
UIGraphicsGetImageFromCurrentImageContext
的截图,但尊重面具。答案 0 :(得分:0)
我想出了一种程序化方法来做到这一点。它涉及创建一个圆形图层,然后在其上绘制一个方形图层。你必须做一些渐变颜色和位置的游戏,以获得看起来不错的东西。
注意:根据您对面具的要求,不确定此解决方案是否适合您
+ (void)makeGradientButton:(UIButton *)button {
// Create a rounded layer
CAGradientLayer *gradient = [CAGradientLayer layer];
gradient.frame = button.bounds;
gradient.colors = [NSArray arrayWithObjects:(id)[[UIColor blackColor] CGColor], (id)[[UIColor whiteColor] CGColor], nil];
gradient.cornerRadius = 8.0f;
// Now create a square layer that draws over the top
CAGradientLayer *gradient2 = [CAGradientLayer layer];
gradient2.frame = CGRectMake(0, 9, button.bounds.size.width, button.bounds.size.height-9);
gradient2.colors = [NSArray arrayWithObjects:(id)[[UIColor blackColor] CGColor], (id)[[UIColor redColor] CGColor], nil];
gradient2.cornerRadius = 0.0f;
[gradient setMasksToBounds:YES];
[button.layer insertSublayer:gradient atIndex:0];
[button.layer insertSublayer:gradient2 atIndex:1];
[button setBackgroundColor:[UIColor clearColor]];
}