通过UIBezierPath贝塞尔曲线画圆形椭圆矩形

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过UIBezierPath贝塞尔曲线画圆形椭圆矩形相关的知识,希望对你有一定的参考价值。

/**创建椭圆形的贝塞尔曲线*/
    UIBezierPath *_ovalPath=[UIBezierPath bezierPathWithOvalInRect:CGRectMake(0, 0, 200, 100)];
    
    /**创建矩形的贝塞尔曲线*/
    UIBezierPath *_rectPath=[UIBezierPath bezierPathWithRect:CGRectMake(0, 0, 200, 100)];
    
    
    /**创建圆形的贝塞尔曲线*/
    
    UIBezierPath *_circlePath=[UIBezierPath bezierPathWithOvalInRect:CGRectMake(0, 0, 100, 100)];
    UIBezierPath *_shapePath=[UIBezierPath bezierPathWithArcCenter:CGPointMake(20, 0) radius:100 startAngle:0 endAngle:3.14*2 clockwise:YES];

    /**创建带形状的图层*/
    CAShapeLayer *_shapeLayer=[CAShapeLayer layer];
    _shapeLayer.frame=CGRectMake(0, 0, 200, 100);
    _shapeLayer.position=self.view.center;
    
    /**注意:图层之间与贝塞尔曲线之间通过path进行关联*/
    _shapeLayer.path=_shapePath.CGPath;
    
    _shapeLayer.fillColor=[UIColor redColor].CGColor;
    [self.view.layer addSublayer:_shapeLayer];

 

以上是关于通过UIBezierPath贝塞尔曲线画圆形椭圆矩形的主要内容,如果未能解决你的问题,请参考以下文章

iOS贝塞尔曲线(UIBezierPath)的基本使用方法

iOS:贝塞尔曲线(UIBezierPath)-----Swift

UIBezierPath

如何在运行中编写一个固定点和一个变化的贝塞尔曲线路径

iOS 利用贝塞尔曲线画出类似气泡框的UI

贝塞尔曲线基本用法