recherche

Maison  >  Questions et réponses  >  le corps du texte

objective-c - Dessin de lignes iOS UIBezierPath, comment supprimer des lignes existantes

Code pour générer des lignes :
self.path = [UIBezierPath bezierPath];

[self.path moveToPoint:from];
[self.path addLineToPoint:to];
self.pathLayer = [CAShapeLayer layer];
self.pathLayer.frame = containerView.bounds;
self.pathLayer.path = self.path.CGPath;
self.pathLayer.strokeColor = color.CGColor;
self.pathLayer.lineWidth = 2.0f;
self.pathLayer.lineJoin = kCALineJoinBevel;

NSMutableArray *ary = [NSMutableArray arrayWithArray:shapeLayers];
[ary addObject:self.pathLayer];
shapeLayers = [NSMutableArray arrayWithArray:ary];
[containerView.layer addSublayer:self.pathLayer];

Comment supprimer la ligne ci-dessus et en dessiner une nouvelle

为情所困为情所困2823 Il y a quelques jours1241

répondre à tous(1)je répondrai

  • 我想大声告诉你

    我想大声告诉你2017-05-02 09:31:25

    Ajouter self.pathLayer = [CAShapeLayer layer]; avant

    if (self.pathLayer) {
            [self.pathLayer removeFromSuperlayer];
        }

    répondre
    0
  • Annulerrépondre