2种 画路径方法

- (void)viewDidLoad {

    [superviewDidLoad];

   //首先得到路径两种方法

    //曲线1--画曲线方法1⃣️

    CGMutablePathRef path =CGPathCreateMutable();

    CGPathMoveToPoint(path,nil,0,0);

    CGPathAddCurveToPoint(path,nil,0,0,200,100,0,400);

    

   //曲线2--用贝塞尔画曲线路径方法2⃣️

   //创建出圆形贝塞尔曲线

    UIBezierPath *circlePath = [UIBezierPathbezierPathWithOvalInRect:CGRectMake(0,0,200,200)];

    

   //根据路径画图工具

    //创建出CAShapeLayer

    self.shapeLayer = [CAShapeLayerlayer];

    //填充颜色为ClearColor

    self.shapeLayer.fillColor = [UIColorclearColor].CGColor;

   //设置线条的宽度和颜色

    self.shapeLayer.lineWidth =1.0f;

    self.shapeLayer.strokeColor = [UIColorredColor].CGColor;

    

   //将路径添加到画图工具中

    //让贝塞尔曲线与CAShapeLayer产生联系

    self.shapeLayer.path =path;

    

    

    //添加并显示

    [self.view.layeraddSublayer:self.shapeLayer];

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值