0
Ich benutze folgenden Code für Drawing Arc in DrawRect ... Ich möchte Arc nur mit Farbverlauf-Effekt zeichnen ... irgendwelche Hilfe bitte?Farbverlauf in CGContextAddArc?
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);