【发布时间】:2011-01-12 08:48:11
【问题描述】:
我正在使用以下代码在 DrawRect 中绘制弧线...我只想绘制带有渐变效果的弧线...请帮忙?
CGContextSetAlpha(ctx, 0.5);
CGContextSetRGBFillColor(ctx, color.red, color.green, color.blue, color.alpha );
CGContextMoveToPoint(ctx, cX, cY);
CGContextAddArc(ctx, cX, cY, radious+10, (startDeg-90)*M_PI/180.0, (endDeg-90)*M_PI/180.0, 0);
CGContextClosePath(ctx);
CGContextFillPath(ctx);
【问题讨论】:
标签: iphone ipad quartz-2d cgcontext