aqui pongo codigo:
Archivo de implementacion del UIView,este me permite dibujar en u UIView que iene una imagen de fondo
Código:
- (void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGPathMoveToPoint(path, NULL, previousPoint.x, previousPoint.y);
CGPathAddLineToPoint(path, NULL, lastPoint.x, lastPoint.y);
CGContextAddPath(context, path);
CGContextSetLineWidth(context, 2.0);
[[UIColor blackColor] setStroke];
CGContextDrawPath(context, kCGPathFillStroke);
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
lastPoint = [[touches anyObject] locationInView:self];
previousPoint = [[touches anyObject] previousLocationInView:self];
[self setNeedsDisplay];
}
- (void)awakeFromNib
{
path = CGPathCreateMutable();
}
ahora yo desde el archivo de implementacion del UIViewController,como borro lo quie he dibujado en el UIView sin borrar la imagen de fondo? gracias