1

CAShapeLayer を使用して線を描画できますが、45 度の角度でのみ線を描画しようとしています。線は 45 度の角度で描画する必要があります。そうしないとビューから削除されます。CAShapeLayer を使用して線を描画するにはどうすればよいですか。助けてください。線を描画するための私のコードは次のとおりです。

- (void)handlePanGesture:(UIPanGestureRecognizer *)gesture
{
 static CGPoint origin;
 CGPoint location ;
 if (gesture.state == UIGestureRecognizerStateBegan)
{
  shapeLayer = [self createShapeLayer:gesture.view];
  origin = [gesture locationInView:gesture.view];
  UIView *tappedView = [gesture.view hitTest:origin withEvent:nil];
  UILabel *tempLabel = (UILabel *)tappedView;
  [valuesArray addObject:tempLabel];

  if(valuesArray)
  {
      [valuesArray removeAllObjects];
  }
  valuesArray = [[NSMutableArray alloc] init];
 }
 else if (gesture.state == UIGestureRecognizerStateChanged)
 {
       path1 = [UIBezierPath bezierPath];
       [path1 moveToPoint:origin];
       location = [gesture locationInView:gesture.view];
      [path1 addLineToPoint:location];
      shapeLayer.path = path1.CGPath;
}
}

- (CAShapeLayer *)createShapeLayer:(UIView *)view
{
shapeLayer = [[CAShapeLayer alloc] init];
shapeLayer.fillColor = [UIColor clearColor].CGColor;
shapeLayer.strokeColor = [UIColor redColor].CGColor;
shapeLayer.lineCap = kCALineCapRound;
shapeLayer.lineJoin = kCALineJoinRound;
shapeLayer.lineWidth = 10.0;
[view.layer addSublayer:shapeLayer];//view.layer

return shapeLayer;
}
4

1 に答える 1

0

私が理解していることから、locationと の間の角度originが 45 度 +/- イプシロンであることを確認する必要があるだけです。したがって、コードは次のようになります。

// EPSILON represent the acceptable error in pixels
#define EPISLON 2

// ...

else if (gesture.state == UIGestureRecognizerStateChanged)
{
    path1 = [UIBezierPath bezierPath];
    [path1 moveToPoint:origin];

    location = [gesture locationInView:gesture.view];

    // only add the line if the absolute different is acceptable (means less than EPSILON)
    CGFloat dx = (location.x - origin.x), dy = (location.y - origin.y);
    if (fabs(fabs(dx) - fabs(dy)) <= EPISLON) {
        [path1 addLineToPoint:location];
        shapeLayer.path = path1.CGPath;
    }
}
于 2013-08-26T21:13:13.413 に答える