0

サブビューとして画像を別の画像に追加するとき、編集中(移動、ズームイン/ズームアウト、回転)にUIImageView続く新しい画像の上にマークを追加しています。

しかし、新しい画像のフレームにマークを接続したままにすることはできません。 画像が追加されたときに最初に接続されますが、移動すると、マークは画像フレームから離れます。

これが私のコードです:

 **viewDidLoad:**
 if (!_marque)
 {
    _marque = [[CAShapeLayer layer] retain];
    _marque.fillColor = [[UIColor clearColor] CGColor];
    _marque.strokeColor = [[UIColor cyanColor] CGColor];
    _marque.lineWidth = 1.0f;
    _marque.lineJoin = kCALineJoinRound;
    _marque.lineDashPattern = [NSArray arrayWithObjects:[NSNumber numberWithInt:10],[NSNumber numberWithInt:5], nil];
    _marque.bounds = CGRectMake(_stampedImageView.frame.origin.x, _stampedImageView.frame.origin.y, 0, 0);
    _marque.position = CGPointMake(_stampedImageView.frame.origin.x + self.view.frame.origin.x, _stampedImageView.frame.origin.y + self.view.frame.origin.y);
 }
 [[_stampedImageView layer] addSublayer:_marque];

 **marque Method:**
 if (![_marque actionForKey:@"linePhase"])
 {
    CABasicAnimation *dashAnimation;
    dashAnimation = [CABasicAnimation animationWithKeyPath:@"lineDashPhase"];
    [dashAnimation setFromValue:[NSNumber numberWithFloat:0.0f]];
    [dashAnimation setToValue:[NSNumber numberWithFloat:15.0f]];
    [dashAnimation setDuration:0.5f];
    [dashAnimation setRepeatCount:HUGE_VALF];
    [_marque addAnimation:dashAnimation forKey:@"linePhase"];
 }

_marque.bounds = CGRectMake(_stampedImageView.frame.origin.x, _stampedImageView.frame.origin.y, 0, 0);
_marque.position = CGPointMake(_stampedImageView.frame.origin.x, _stampedImageView.frame.origin.y);

CGMutablePathRef path = CGPathCreateMutable();
CGPathAddRect(path, NULL, frame);
[_marque setPath:path];
CGPathRelease(path);

_marque.hidden = NO;

 **panGestureRecognizer:**
 CGPoint translatedPoint = [(UIPanGestureRecognizer*)sender translationInView:self.view];

if([(UIPanGestureRecognizer*)sender state] == UIGestureRecognizerStateBegan)
{
    _firstX = [_stampedImageView center].x;
    _firstY = [_stampedImageView center].y;
}

translatedPoint = CGPointMake(_firstX+translatedPoint.x, _firstY+translatedPoint.y);

[_stampedImageView setCenter:translatedPoint];
[self showOverlayWithFrame:_stampedImageView.frame];

誰かが私が欠けているものを見るのを手伝ってくれませんか?

ありがとう!

4

1 に答える 1

0

この行にエラーがある可能性があると思います:

CGPathAddRect(path, NULL, frame);

私が見ることができるどこにもフレームが定義されていません。たぶん_stampedImageView.frame?

于 2012-08-07T21:18:23.560 に答える