0

我写了一个简单的drawRect,目的是画一个圆,投下阴影并用蓝色填充。我已经成功地绘制了一个圆圈并将其填充为蓝色,但我的阴影没有生效。如果我抚摸我的圆圈,而不是填充,我看到阴影在圆圈内,并且在填充期间它被填充颜色绘制

rect 到我的 drawRect 有维度 [[CustomButton alloc]initWithFrame:CGRectMake(0, 0, 50, 50)];

@implementation CustomButton

- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self)
{
    [self setBackgroundColor:[UIColor clearColor]];
}
return self;
}

- (void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGColorRef colorRef = [[UIColor blueColor] CGColor];
CGContextSetStrokeColorWithColor(context, colorRef);
CGContextSetFillColorWithColor(context, [[UIColor blueColor] CGColor]);


CGRect buttonRect = CGRectInset(rect, 3, 3);

CGPoint centerPoint = CGPointMake(CGRectGetMidX(buttonRect  ),     CGRectGetMidY(buttonRect));
CGFloat radius = CGRectGetWidth(buttonRect) / 2;

CGContextSaveGState(context);
CGContextSetShadow(context, CGSizeMake(15.0, 20.0), 1.0);
CGContextAddArc(context, centerPoint.x, centerPoint.y, radius, 0, 2*M_PI, 1);
CGContextClip(context);
CGContextFillRect(context, buttonRect);
CGContextRestoreGState(context);


CGColorRelease(colorRef);

}

@end

谢谢

4

1 回答 1

1

尝试这个:

- (void)drawRect:(CGRect)rect
{
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGColorRef colorRef = [[UIColor blueColor] CGColor];
    CGContextSetStrokeColorWithColor(context, colorRef);
    CGContextSetFillColorWithColor(context, [[UIColor blueColor] CGColor]);


    CGRect buttonRect = CGRectInset(rect, 3, 3);

    CGPoint centerPoint = CGPointMake(CGRectGetMidX(buttonRect  ),     CGRectGetMidY(buttonRect));
    CGFloat radius = CGRectGetWidth(buttonRect) / 2;

    CGContextSaveGState(context);
    CGContextSetShadow(context, CGSizeMake(2.0, 2.0), 2.0);
    CGContextAddArc(context, centerPoint.x, centerPoint.y, radius, 0, 2*M_PI, 1);
    //CGContextClip(context);
    CGContextFillPath(context);
    CGContextRestoreGState(context);


    CGColorRelease(colorRef);
}

你的影子是长方形的,这就是为什么在圆圈下面看不到它。我将调用更改为CGContextFillRectCGContextFillPath已经使用创建的路径CGContextAddArc

这就是你想要的吗?

编辑

你可以在这里找到一个项目:https ://bitbucket.org/reydan/so_circleshadow

于 2013-07-18T10:38:38.290 回答