如何使用模糊阴影绘制线条或曲线?

时间:2010-04-25 15:35:06

标签: iphone

是否可以用石英做到这一点?

1 个答案:

答案 0 :(得分:2)

在绘制路径之前,只需使用CGContextSetShadow(context, offset, blur)即可。

CGSize offset;
float blur;
offset.width = 10;
offset.height = -10;

CGContextSetShadow(context, offset, blur);
CGContextRect(context, CGRectMake(20, 20, 100, 100);