4

元に戻るボタンを実装しようとしていますが、すべてが正常に機能しており、アクションをキャッシュできますが、以前に描画された線はまだそこにあります。元にクリックアクションごとに消えるはずです。助けてください

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    path = [[UIBezierPath alloc] init];
    mouseSwiped = NO;
    UITouch *touch = [touches anyObject];
    lastPoint = [touch locationInView:self.view];
    CGPoint p = [touch locationInView:self.view];
    [path moveToPoint:p];
    [pathArray addObject:path];
   // NSLog(@"%@",pathArray);
}

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {


    mouseSwiped = YES;
    UITouch *touch = [touches anyObject];
    CGPoint currentPoint = [touch locationInView:self.view];
    CGPoint p = [touch locationInView:self.view];
    [path addLineToPoint:p];

    UIGraphicsBeginImageContext(self.view.frame.size);
    [self.tempDrawImage.image drawInRect:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
    CGContextMoveToPoint(UIGraphicsGetCurrentContext(), lastPoint.x, lastPoint.y);
    CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), currentPoint.x, currentPoint.y);
    CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound);
    CGContextSetLineWidth(UIGraphicsGetCurrentContext(), brush );
    CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext(), red, green, blue, 1.0);
    CGContextSetBlendMode(UIGraphicsGetCurrentContext(),kCGBlendModeNormal);

    CGContextStrokePath(UIGraphicsGetCurrentContext());
    self.tempDrawImage.image = UIGraphicsGetImageFromCurrentImageContext();
    [self.tempDrawImage setAlpha:opacity];
    UIGraphicsEndImageContext();

    lastPoint = currentPoint;
   [self.view setNeedsDisplay];
}

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
    UITouch *touch = [touches anyObject];
    CGPoint p = [touch locationInView:self.view];
    [path addLineToPoint:p];

    if(!mouseSwiped) {
        UIGraphicsBeginImageContext(self.view.frame.size);
        [self.tempDrawImage.image drawInRect:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
        CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound);
        CGContextSetLineWidth(UIGraphicsGetCurrentContext(), brush);
        CGContextSetRGBStrokeColor(UIGraphicsGetCurrentContext(), red, green, blue, opacity);
        CGContextMoveToPoint(UIGraphicsGetCurrentContext(), lastPoint.x, lastPoint.y);
        CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), lastPoint.x, lastPoint.y);
        CGContextStrokePath(UIGraphicsGetCurrentContext());
        CGContextFlush(UIGraphicsGetCurrentContext());
        self.tempDrawImage.image = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();
    }

    UIGraphicsBeginImageContext(self.mainImage.frame.size);
    [self.mainImage.image drawInRect:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) blendMode:kCGBlendModeNormal alpha:1.0];
    [self.tempDrawImage.image drawInRect:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) blendMode:kCGBlendModeNormal alpha:opacity];
    self.mainImage.image = UIGraphicsGetImageFromCurrentImageContext();
    self.tempDrawImage.image = nil;
    UIGraphicsEndImageContext();
    [self mainImage];
    [self.view setNeedsDisplay];
     [path removeAllPoints];
}

次の元に戻る機能とpatharrayカウントはクリックするたびに減少しますが、描画線はまだそこにあります

-(IBAction)undoButtonClicked:(id)sender
{
    NSLog(@"%s", __FUNCTION__);
    NSLog(@"pathArray count is %i", [pathArray count]);
    if([pathArray count]>0){
        UIBezierPath *_path=[pathArray lastObject];
        [bufferArray addObject:_path];
        [pathArray removeLastObject];
        //self.tempDrawImage.image;
        [self.view  setNeedsDisplay];
    }
}
4

1 に答える 1

0

描画のストロークを蓄積するために ivar を使用しているように見えますがtempImage、元に戻すをクリックすると、そこに既に描画されている線を消去するために何もしません。図面の要件がどれほど複雑かはわかりません。それらが単純な場合は、各パスで呼び出しているビューでpathArray反復するだけです (もちろん、ストロークを描画するたびに、パスまたはビューで lineWidth などを設定する必要があります)。簡単な最適化として、新規/削除されたストロークの境界を計算し、ビューの適切な部分を呼び出すことができます。タッチが移動するたびに更新しているため、オーバーヘッドがかなり高いと思います。-drawRect-strokesetNeedsDisplayInRect:tempImage

于 2013-02-08T00:54:20.350 に答える