Je n'arrive toujours pas à tracer une ligne avec CGContext. En fait, je suis allé au trait pour dessiner, mais maintenant, j'ai besoin que l'arrière-plan du Rect soit transparent pour que l'arrière-plan existant soit visible. Voici mon code de test:
(void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [UIColor clearColor].CGColor);
CGContextSetAlpha(context,0.0);
CGContextFillRect(context, rect);
CGContextSetStrokeColorWithColor(context, [UIColor whiteColor].CGColor);
CGContextSetLineWidth(context, 5.0);
CGContextMoveToPoint(context, 100.0,0.0);
CGContextAddLineToPoint(context,100.0, 100.0);
CGContextStrokePath(context);
}
Des idées?