目前我正在开发iOS的绘图应用程序。我坚持将阴影效果应用于特定的绘制路径。我使用UIBezierpath绘制路径。有没有办法在UIBezierpath上应用阴影效果?
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetStrokeColorWithColor(context, [[UIColor whiteColor] CGColor]);
CGContextSetShadowWithColor(context, CGSizeMake(0, 5), 5.0, [[UIColor blackColor]CGColor]);
CGContextDrawPath(context, kCGPathFill);
这样的事可能对你有所帮助..
CGContextSetShadowWithColor(context, CGSizeZero, 20, [path.color CGColor])
我想这可能会帮助你显示阴影效果