ios-贝塞尔曲线

git下载地址:[email protected]:lu459700780/UIBezierPath.git

演示:

#import "ViewController.h"
@interface ViewController ()

@property (nonatomic,assign)BOOL Plus_Minus;
@property (nonatomic,strong)CAShapeLayer * shapeLayer;
@property (nonatomic,strong)UIBezierPath * trackPath;
@property (nonatomic,strong)CAShapeLayer * trackLayer;
@property (nonatomic,strong)UIBezierPath * progressPath;
@property (nonatomic,strong)CAShapeLayer * progressLayer;
@property (nonatomic,strong)NSTimer * timer;
@property (nonatomic,strong)CAShapeLayer * shapeLayerT;
@property (nonatomic,strong)CAShapeLayer * shapeLayerTM;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    _Plus_Minus = YES;

    //创建CAShapeLayer
    self.shapeLayer = [CAShapeLayer layer];
    self.shapeLayer.frame = CGRectMake(100, 100, 50, 50);
//    self.shapeLayer.position = self.view.center;
    self.shapeLayer.fillColor = [UIColor cyanColor].CGColor;//填充颜色为ClearColor

    //设置线条的宽度和颜色
    self.shapeLayer.lineWidth = 1.0f;
    self.shapeLayer.strokeColor = [UIColor redColor].CGColor;

    //创建出圆形贝塞尔曲线
    UIBezierPath * circlePath = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(100, 100, 50, 50)];

    //让贝塞尔曲线与CAShapeLayer 产生联系
    self.shapeLayer.path = circlePath.CGPath;

    //一、添加并显示 画一个圆形
//    [self.view.layer addSublayer:self.shapeLayer];

    /*
     Stroke:用笔画的意思
     在这里就是起始笔和结束笔的位置
     Stroke为1的话就是一整圈,0.5就是半圈,0.25就是1/4圈。以此类推
     */
    self.shapeLayer.strokeStart = 0;
    self.shapeLayer.strokeEnd = 0.75;

    //二、画两个圆,其中一个圆表示进度
    [self createBezierPath:CGRectMake(100, 200, 100, 100)];

    //三、创建转动的圆
    [self circleBezierPath];
    //四、通过点画线组成一个五边线
    [self fiveAnimation];
    //五、画一条虚线
    [self createDottedLine];
    //六、画一个弧线
    [self createCurvedLine];
}

-(void)createCurvedLine{

    UIBezierPath* aPath = [UIBezierPath bezierPath];
    aPath.lineWidth = 5.0;
    aPath.lineCapStyle = kCGLineCapRound; //线条拐角
    aPath.lineJoinStyle = kCGLineCapRound; //终点处理
    [aPath moveToPoint:CGPointMake(20, 100)];
    [aPath addQuadCurveToPoint:CGPointMake(120, 100) controlPoint:CGPointMake(70, 0)];

    CAShapeLayer * CurvedLineLayer=[CAShapeLayer layer];
    CurvedLineLayer.path=aPath.CGPath;
    [self.view.layer addSublayer:CurvedLineLayer];

}

-(void)createDottedLine{

    CAShapeLayer *shapeLayer = [CAShapeLayer layer];
    [shapeLayer setBounds:self.view.bounds];
    [shapeLayer setPosition:self.view.center];
    [shapeLayer setFillColor:[[UIColor clearColor] CGColor]];

    // 设置虚线颜色为blackColor
    [shapeLayer setStrokeColor:[[UIColor colorWithRed:223/255.0 green:223/255.0 blue:223/255.0 alpha:1.0f] CGColor]];

    // 3.0f设置虚线的宽度
    [shapeLayer setLineWidth:1.0f];
    [shapeLayer setLineJoin:kCALineJoinRound];

    // 3=线的宽度 1=每条线的间距
    [shapeLayer setLineDashPattern:
     [NSArray arrayWithObjects:[NSNumber numberWithInt:3],
      [NSNumber numberWithInt:1],nil]];

    // Setup the path
    CGMutablePathRef path = CGPathCreateMutable();
    CGPathMoveToPoint(path, NULL, 0, 89);
    CGPathAddLineToPoint(path, NULL, 320,89);

    [shapeLayer setPath:path];
    CGPathRelease(path);

    // 可以把self改成任何你想要的UIView, 下图演示就是放到UITableViewCell中的
    [[self.view layer] addSublayer:shapeLayer];

}

//五角形
-(void)fiveAnimation{

    UIBezierPath *aPath = [UIBezierPath bezierPath];
    //开始点 从上左下右的点
    [aPath moveToPoint:CGPointMake(100,100)];
    //划线点
    [aPath addLineToPoint:CGPointMake(60, 140)];
    [aPath addLineToPoint:CGPointMake(60, 240)];
    [aPath addLineToPoint:CGPointMake(160, 240)];
    [aPath addLineToPoint:CGPointMake(160, 140)];
    [aPath closePath];
    //设置定点是个5*5的小圆形(自己加的)
    UIBezierPath *path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(100-5/2.0, 50, 20, 20)];
    [aPath appendPath:path];

    CAShapeLayer *shapelayer = [CAShapeLayer layer];
    //设置边框颜色
    shapelayer.strokeColor = [[UIColor redColor]CGColor];
    //设置填充颜色 如果只要边 可以把里面设置成[UIColor ClearColor]
    shapelayer.fillColor = [[UIColor blueColor]CGColor];
    //就是这句话在关联彼此(UIBezierPath和CAShapeLayer):
    shapelayer.path = aPath.CGPath;
    [self.view.layer addSublayer:shapelayer];

}

-(void)circleBezierPath{

    _timer = [NSTimer scheduledTimerWithTimeInterval:0.15 target:self selector:@selector(circleAnimationTypeOne) userInfo:nil repeats:YES];

    self.shapeLayerT = [CAShapeLayer layer];
    self.shapeLayerT.frame = CGRectMake(0, 0, 150, 150);
    self.shapeLayerT.position = self.view.center;
    self.shapeLayerT.fillColor = [UIColor clearColor].CGColor;

    //设置线条的宽度和颜色
    self.shapeLayerT.lineWidth = 2.0f;
    self.shapeLayerT.strokeColor = [UIColor redColor].CGColor;

    //设置stroke起始点
    self.shapeLayerT.strokeStart = 0;
    self.shapeLayerT.strokeEnd = 0;

    //创建出圆形贝塞尔曲线
    UIBezierPath * circlePath = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(0, 0, 150, 150)];

    //让贝塞尔曲线与CAShapeLayer产生联系
    self.shapeLayerT.path = circlePath.CGPath;
    //添加并显示
    [self.view.layer addSublayer:self.shapeLayerT];

    self.shapeLayerTM = [CAShapeLayer layer];
    self.shapeLayerTM.frame = CGRectMake(0, 0, 170, 170);
    self.shapeLayerTM.position = self.view.center;
    self.shapeLayerTM.fillColor = [UIColor clearColor].CGColor;

    //设置线条的宽度和颜色
    self.shapeLayerTM.lineWidth = 2.0f;
    self.shapeLayerTM.strokeColor = [UIColor blueColor].CGColor;

    //设置stroke起始点
    self.shapeLayerTM.strokeStart = 0;
    self.shapeLayerTM.strokeEnd = 0;

    //创建出圆形贝塞尔曲线
    UIBezierPath * circlePathTM = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(0, 0, 170, 170)];

    //让贝塞尔曲线与CAShapeLayer产生联系
    self.shapeLayerTM.path = circlePathTM.CGPath;
    //添加并显示
    [self.view.layer addSublayer:self.shapeLayerTM];
}

-(void)circleAnimationTypeOne{

    NSLog(@"strokeStart===%f",self.shapeLayerT.strokeStart);
    NSLog(@"strokeEnd====%f",self.shapeLayerT.strokeEnd);

    if (self.shapeLayerT.strokeEnd > 1 && self.shapeLayerT.strokeStart < 1) {

        self.shapeLayerT.strokeStart += 0.1;
        self.shapeLayerTM.strokeStart += 0.1;

    }else if(self.shapeLayerT.strokeStart == 0){

        self.shapeLayerT.strokeEnd += 0.1;
        self.shapeLayerTM.strokeEnd += 0.1;
    }

    if (self.shapeLayerT.strokeEnd == 0) {

        self.shapeLayerT.strokeStart = 0;
        self.shapeLayerTM.strokeStart = 0;
    }
    if (self.shapeLayerT.strokeStart == self.shapeLayerT.strokeEnd) {

        self.shapeLayerT.strokeEnd = 0;
        self.shapeLayerTM.strokeEnd = 0;
    }
}

//画两个圆形
-(void)createBezierPath:(CGRect)mybound{

    //外圆
    _trackPath = [UIBezierPath bezierPathWithArcCenter:self.view.center radius:(mybound.size.width-0.7)/2 startAngle:0 endAngle:M_PI*2 clockwise:YES];
    _trackLayer = [CAShapeLayer new];
    [self.view.layer addSublayer:_trackLayer];
    _trackLayer.fillColor = nil;
    _trackLayer.strokeColor = [UIColor grayColor].CGColor;
    _trackLayer.path = _trackPath.CGPath;
    _trackLayer.lineWidth = 5;
    _trackLayer.frame = mybound;

    //内圆
    _progressPath = [UIBezierPath bezierPathWithArcCenter:self.view.center radius:(mybound.size.width-0.7)/2 startAngle:-M_PI_2 endAngle:(M_PI*2)*0.7 clockwise:YES];
    _progressLayer = [CAShapeLayer new];
    [self.view.layer addSublayer:_progressLayer];
    _progressLayer.fillColor = nil;
    _progressLayer.strokeColor = [UIColor redColor].CGColor;

    _progressLayer.lineCap = kCALineCapRound;
    _progressLayer.path = _progressPath.CGPath;
    _progressLayer.lineWidth = 5;
    _progressLayer.frame = mybound;

}
@end
时间: 2024-12-29 11:14:57

ios-贝塞尔曲线的相关文章

UIBezierPath IOS贝塞尔曲线

//记录  贝塞尔曲线使用 //根据一个矩形画曲线 + (UIBezierPath *)bezierPathWithRect:(CGRect)rect //根据矩形框的内切圆画曲线 + (UIBezierPath *)bezierPathWithOvalInRect:(CGRect)rect //根据矩形画带圆角的曲线 + (UIBezierPath *)bezierPathWithRoundedRect:(CGRect)rect cornerRadius:(CGFloat)cornerRadi

IOS贝塞尔曲线圆形进度条和加载动画

做项目让做一个加载动画,一个圈圈在转中间加一个图片,网上有好多demo,这里我也自己写了一个,中间的图片可加可不加.其中主要用到贝塞尔曲线.UIBezierPath是对CGContextRef的进一步封装,不多说直接上代码: #import <UIKit/UIKit.h> @interface CircleLoader : UIView //进度颜色 @property(nonatomic, retain) UIColor* progressTintColor ; //轨道颜色 @proper

ios 贝塞尔曲线方法解释

1.根据一个矩形画曲线 + (UIBezierPath *)bezierPathWithRect:(CGRect)rect 2.根据矩形框的内切圆画曲线 + (UIBezierPath *)bezierPathWithOvalInRect:(CGRect)rect 3.根据矩形画带圆角的曲线 + (UIBezierPath *)bezierPathWithRoundedRect:(CGRect)rect cornerRadius:(CGFloat)cornerRadius 4.在矩形中,可以针对

iOS - 贝塞尔曲线,折线,曲线,波浪线

接口调用简单, 能够调整线的弯曲程度, 能够在线上显示数据点 demo下载地址 http://download.csdn.net/detail/dylan_lwb_/8838909

iOS 使用贝塞尔曲线绘制路径

使用贝塞尔曲线绘制路径 大多数时候,我们在开发中使用的控件的边框是矩形,或者做一点圆角,是使得矩形的角看起来更加的圆滑. 但是如果我们想要一个不规则的图形怎么办?有人说,叫UI妹子做,不仅省事,还可以趁机接近她们(_:D).这又时候确实可以.但是如果是一个时刻变动的不规则图形,这样如果做成动图或者剪出很多张图,再叫UI妹子做的话,似乎也能解决, 但是实际效果吧,呵呵. 更重要的是从此以后UI妹子不仅不愿搭理你,连以后接触的机会都不会再给你了.好吧,iOS中我们其实不需要担心这个问题.使用UIBe

iOS开发 贝塞尔曲线的使用总结

iOS开发 贝塞尔曲线UIBezierPath 最近项目中需要用到用贝塞尔曲线去绘制路径 ,然后往路径里面填充图片,找到这篇文章挺好,记录下来 自己学习! 转至 http://blog.csdn.net/guo_hongjun1611/article/details/7839371 使用UIBezierPath类可以创建基于矢量的路径,这个类在UIKit中.此类是Core Graphics框架关于path的一个封装.使用此类可以定义简单的形状,如椭圆或者矩形,或者有多个直线和曲线段组成的形状.

iOS:使用贝塞尔曲线绘制图表(折线图、柱状图、饼状图)

1.介绍: UIBezierPath :画贝塞尔曲线的path类 UIBezierPath定义 : 贝赛尔曲线的每一个顶点都有两个控制点,用于控制在该顶点两侧的曲线的弧度. 曲线的定义有四个点:起始点.终止点(也称锚点)以及两个相互分离的中间点. 滑动两个中间点,贝塞尔曲线的形状会发生变化. UIBezierPath :对象是CGPathRef数据类型的封装,可以方便的让我们画出 矩形 . 椭圆 或者 直线和曲线的组合形状 初始化方法: + (instancetype)bezierPath; /

IOS用CGContextRef画各种图形(文字、圆、直线、弧线、矩形、扇形、椭圆、三角形、圆角矩形、贝塞尔曲线、图片)(转)

Graphics Context是图形上下文,可以将其理解为一块画布,我们可以在上面进行绘画操作,绘制完成后,将画布放到我们的view中显示即可,view看作是一个画框. 自己学习时实现的demo,希望对大家有帮助,具体的实现看代码,并有完美的注释解释,还有一些对我帮助的博文供大家参考.都在代码里面. 看一下demo效果图先: 自定义CustomView类,CustomView.h: [cpp]  view plain copy #import <UIKit/UIKit.h> #import 

iOS开发 贝塞尔曲线UIBezierPath(2)

使用CAShapeLayer与UIBezierPath可以实现不在view的drawRect方法中就画出一些想要的图形 . 1:UIBezierPath: UIBezierPath是在 UIKit 中的一个类,继承于NSObject,可以创建基于矢量的路径.此类是Core Graphics框架关于path的一个OC封装.使用此类可以定义常见的圆形.多边形等形状 .我们使用直线.弧(arc)来创建复杂的曲线形状.每一个直线段或者曲线段的结束的地方是下一个的开始的地方.每一个连接的直线或者曲线段的集

iOS开发 贝塞尔曲线UIBezierPath

使用UIBezierPath类可以创建基于矢量的路径,这个类在UIKit中.此类是Core Graphics框架关于path的一个封装.使用此类可以定义简单的形状,如椭圆或者矩形,或者有多个直线和曲线段组成的形状. 1.Bezier Path 基础 UIBezierPath对象是CGPathRef数据类型的封装.path如果是基于矢量形状的,都用直线和曲线段去创建.我们使用直线段去创建矩形和多边形,使用曲线段去创建弧(arc),圆或者其他复杂的曲线形状.每一段都包括一个或者多个点,绘图命令定义如