`
啸笑天
  • 浏览: 3465617 次
  • 性别: Icon_minigender_1
  • 来自: China
社区版块
存档分类
最新评论

iOS UIBezierPath类 介绍

 
阅读更多

感谢:http://blog.csdn.net/crayondeng/article/details/11093689

使用UIBezierPath类可以创建基于矢量的路径,这个类在UIKit中。此类是Core Graphics框架关于path的一个封装。使用此类可以定义简单的形状,如椭圆或者矩形,或者有多个直线和曲线段组成的形状。

    
1.Bezier Path 基础
   UIBezierPath对象是CGPathRef数据类型的封装。path如果是基于矢量形状的,都用直线和曲线段去创建。我们使用直线段去创建矩形和多边形,使用曲线段去创建弧(arc),圆或者其他复杂的曲线形状。每一段都包括一个或者多个点,绘图命令定义如何去诠释这些点。每一个直线段或者曲线段的结束的地方是下一个的开始的地方。每一个连接的直线或者曲线段的集合成为subpath。一个UIBezierPath对象定义一个完整的路径包括一个或者多个subpaths。
 
   创建和使用一个path对象的过程是分开的。创建path是第一步,包含一下步骤:
(1)创建一个Bezier path对象。
(2)使用方法moveToPoint:去设置初始线段的起点。
(3)添加line或者curve去定义一个或者多个subpaths。
(4)改变UIBezierPath对象跟绘图相关的属性。
例如,我们可以设置stroked path的属性lineWidth和lineJoinStyle。也可以设置filled path的属性usesEvenOddFillRule。
 
   当创建path,我们应该管理path上面的点相对于原点(0,0),这样我们在随后就可以很容易的移动path了。为了绘制path对象,我们要用到stroke和fill方法。这些方法在current graphic context下渲染path的line和curve段。
 
 
2、使用UIBezierPath创建多边形---在path下面添加直线条形成多边形
多边形是一些简单的形状,这些形状是由一些直线线条组成,我们可以用moveToPoint: 和 addLineToPoint:方法去构建。
方法moveToPoint:设置我们想要创建形状的起点。从这点开始,我们可以用方法addLineToPoint:去创建一个形状的线段。
我们可以连续的创建line,每一个line的起点都是先前的终点,终点就是指定的点。
 
下面的代码描述了如何用线段去创建一个五边形。第五条线通过调用closePath方法得到的,它连接了最后一个点(0,40)和第一个点(100,0)
说明:closePath方法不仅结束一个shape的subpath表述,它也在最后一个点和第一个点之间画一条线段,如果我们画多边形的话,这个一个便利的方法我们不需要去画最后一条线。
 
[cpp] view plaincopy
 
  1. // Only override drawRect: if you perform custom drawing.  
  2. // An empty implementation adversely affects performance during animation.  
  3. - (void)drawRect:(CGRect)rect  
  4. {  
  5.     UIColor *color = [UIColor redColor];  
  6.     [color set]; //设置线条颜色  
  7.       
  8.     UIBezierPath* aPath = [UIBezierPath bezierPath];  
  9.     aPath.lineWidth = 5.0;  
  10.       
  11.     aPath.lineCapStyle = kCGLineCapRound; //线条拐角  
  12.     aPath.lineJoinStyle = kCGLineCapRound; //终点处理  
  13.       
  14.     // Set the starting point of the shape.  
  15.     [aPath moveToPoint:CGPointMake(100.0, 0.0)];  
  16.       
  17.     // Draw the lines  
  18.     [aPath addLineToPoint:CGPointMake(200.0, 40.0)];  
  19.     [aPath addLineToPoint:CGPointMake(160, 140)];  
  20.     [aPath addLineToPoint:CGPointMake(40.0, 140)];  
  21.     [aPath addLineToPoint:CGPointMake(0.0, 40.0)];  
  22.     [aPath closePath];//第五条线通过调用closePath方法得到的  
  23.       
  24.     [aPath stroke];//Draws line 根据坐标点连线  
  25. }  
注:这个类要继承自UIView。
 
运行的结果如下图:


  
如果修改最后一句代码:[aPathfill];
运行结果就如下:


 
 
这样就知道stroke  和  fill  方法的区别了吧!
 
3、使用UIBezierPath创建矩形
使用这个方法即可:
[cpp] view plaincopy
 
  1. Creates and returns a new UIBezierPath object initialized with a rectangular path.  
  2.   
  3. + (UIBezierPath *)bezierPathWithRect:(CGRect)rect  

demo代码:
[cpp] view plaincopy
 
  1. - (void)drawRect:(CGRect)rect  
  2. {  
  3.     UIColor *color = [UIColor redColor];  
  4.     [color set]; //设置线条颜色  
  5.       
  6.     UIBezierPath* aPath = [UIBezierPath bezierPathWithRect:CGRectMake(20, 20, 100, 50)];  
  7.       
  8.     aPath.lineWidth = 5.0;  
  9.     aPath.lineCapStyle = kCGLineCapRound; //线条拐角  
  10.     aPath.lineJoinStyle = kCGLineCapRound; //终点处理  
  11.       
  12.     [aPath stroke];  
  13. }  

4、使用UIBezierPath创建圆形或者椭圆形
使用这个方法即可:
[cpp] view plaincopy
 
  1. Creates and returns a new UIBezierPath object initialized with an oval path inscribed in the specified rectangle  
  2.   
  3. + (UIBezierPath *)bezierPathWithOvalInRect:(CGRect)rect  

这个方法根据传入的rect矩形参数绘制一个内切曲线。
当传入的rect是一个正方形时,绘制的图像是一个内切圆;当传入的rect是一个长方形时,绘制的图像是一个内切椭圆。
 
5、使用UIBezierPath创建一段弧线
使用这个方法:
 
[cpp] view plaincopy
 
  1. Creates and returns a new UIBezierPath object initialized with an arc of a circle.  
  2.   
  3. + (UIBezierPath *)bezierPathWithArcCenter:(CGPoint)center radius:(CGFloat)radius startAngle:(CGFloat)startAngle endAngle:(CGFloat)endAngle clockwise:(BOOL)clockwise  
  4. Parameters  
  5. center  
  6. Specifies the center point of the circle (in the current coordinate system) used to define the arc.  
  7. radius  
  8. Specifies the radius of the circle used to define the arc.  
  9. startAngle  
  10. Specifies the starting angle of the arc (measured in radians).  
  11. endAngle  
  12. Specifies the end angle of the arc (measured in radians).  
  13. clockwise  
  14. The direction in which to draw the arc.  
  15. Return Value  
  16. new path object with the specified arc.  
 
其中的参数分别指定:这段圆弧的中心,半径,开始角度,结束角度,是否顺时针方向。
 
下图为弧线的参考系。
 

 


demo代码:
[cpp] view plaincopy
 
  1. #define pi 3.14159265359  
  2. #define   DEGREES_TO_RADIANS(degrees)  ((pi * degrees)/ 180)  
 
[cpp] view plaincopy
 
  1. - (void)drawRect:(CGRect)rect  
  2. {  
  3.     UIColor *color = [UIColor redColor];  
  4.     [color set]; //设置线条颜色  
  5.       
  6.     UIBezierPath* aPath = [UIBezierPath bezierPathWithArcCenter:CGPointMake(150, 150)  
  7.                                                          radius:75  
  8.                                                      startAngle:0  
  9.                                                        endAngle:DEGREES_TO_RADIANS(135)  
  10.                                                       clockwise:YES];  
  11.       
  12.     aPath.lineWidth = 5.0;  
  13.     aPath.lineCapStyle = kCGLineCapRound; //线条拐角  
  14.     aPath.lineJoinStyle = kCGLineCapRound; //终点处理  
  15.       
  16.     [aPath stroke];  
  17. }  
 
结果如下图:


 
 
6、UIBezierPath类提供了添加二次贝塞尔曲线和三次贝塞尔曲线的支持。
曲线段在当前点开始,在指定的点结束。曲线的形状有开始点,结束点,一个或者多个控制点的切线定义。下图显示了两种曲线类型的相似,以及控制点和curve形状的关系。
 
(1)绘制二次贝塞尔曲线
 
使用到这个方法:
[cpp] view plaincopy
 
  1. Appends a quadratic Bézier curve to the receiver’s path.  
  2.   
  3. - (void)addQuadCurveToPoint:(CGPoint)endPoint controlPoint:(CGPoint)controlPoint  
  4. Parameters  
  5. endPoint  
  6. The end point of the curve.  
  7. controlPoint  
  8. The control point of the curve.  



 
 
demo代码:
[cpp] view plaincopy
 
  1. - (void)drawRect:(CGRect)rect  
  2. {  
  3.     UIColor *color = [UIColor redColor];  
  4.     [color set]; //设置线条颜色  
  5.       
  6.     UIBezierPath* aPath = [UIBezierPath bezierPath];  
  7.       
  8.     aPath.lineWidth = 5.0;  
  9.     aPath.lineCapStyle = kCGLineCapRound; //线条拐角  
  10.     aPath.lineJoinStyle = kCGLineCapRound; //终点处理  
  11.       
  12.     [aPath moveToPoint:CGPointMake(20, 100)];  
  13.       
  14.     [aPath addQuadCurveToPoint:CGPointMake(120, 100) controlPoint:CGPointMake(70, 0)];  
  15.       
  16.     [aPath stroke];  
  17. }  



 
 
 
(2)绘制三次贝塞尔曲线
 
使用到这个方法:
[cpp] view plaincopy
 
  1. Appends a cubic Bézier curve to the receiver’s path.  
  2.   
  3. - (void)addCurveToPoint:(CGPoint)endPoint controlPoint1:(CGPoint)controlPoint1 controlPoint2:(CGPoint)controlPoint2  
  4. Parameters  
  5. endPoint  
  6. The end point of the curve.  
  7. controlPoint1  
  8. The first control point to use when computing the curve.  
  9. controlPoint2  
  10. The second control point to use when computing the curve.  



 
 
demo代码:
[cpp] view plaincopy
 
  1. - (void)drawRect:(CGRect)rect  
  2. {  
  3.     UIColor *color = [UIColor redColor];  
  4.     [color set]; //设置线条颜色  
  5.       
  6.     UIBezierPath* aPath = [UIBezierPath bezierPath];  
  7.       
  8.     aPath.lineWidth = 5.0;  
  9.     aPath.lineCapStyle = kCGLineCapRound; //线条拐角  
  10.     aPath.lineJoinStyle = kCGLineCapRound; //终点处理  
  11.       
  12.     [aPath moveToPoint:CGPointMake(20, 50)];  
  13.       
  14.     [aPath addCurveToPoint:CGPointMake(200, 50) controlPoint1:CGPointMake(110, 0) controlPoint2:CGPointMake(110, 100)];  
  15.       
  16.     [aPath stroke];  
  17. }  



 
 
 
7.使用Core Graphics函数去修改path。
    UIBezierPath类只是CGPathRef数据类型和path绘图属性的一个封装。虽然通常我们可以用UIBezierPath类的方法去添加直线段和曲线段,UIBezierPath类还提供了一个属性CGPath,我们可以用来直接修改底层的path data type。如果我们希望用Core Graphics 框架函数去创建path,则我们要用到此属性。
 
    有两种方法可以用来修改和UIBezierPath对象相关的path。可以完全的使用Core Graphics函数去修改path,也可以使用Core Graphics函数和UIBezierPath函数混合去修改。第一种方法在某些方面相对来说比较容易。我们可以创建一个CGPathRef数据类型,并调用我们需要修改path信息的函数。
下面的代码就是赋值一个新的CGPathRef给UIBezierPath对象。
// Create the path data
CGMutablePathRef cgPath = CGPathCreateMutable();
CGPathAddEllipseInRect(cgPath, NULL, CGRectMake(0, 0, 300, 300));
CGPathAddEllipseInRect(cgPath, NULL, CGRectMake(50, 50, 200, 200));
 
// Now create the UIBezierPath object
UIBezierPath* aPath = [UIBezierPath bezierPath];
aPath.CGPath = cgPath;
aPath.usesEvenOddFillRule = YES;
 
// After assigning it to the UIBezierPath object, you can release
// your CGPathRef data type safely.
CGPathRelease(cgPath);
     如果我们使用Core Graphics函数和UIBezierPath函数混合方法,我们必须小心的移动path 信息在两者之间。因为UIBezierPath类拥有自己底层的CGPathRef data type,我们不能简单的检索该类型并直接的修改它。相反,我们应该生成一个副本,然后修改此副本,然后赋值此副本给CGPath属性,如下代码:

 Mixing Core Graphics and UIBezierPath calls

UIBezierPath*    aPath = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(0, 0, 300, 300)];
 
// Get the CGPathRef and create a mutable version.
CGPathRef cgPath = aPath.CGPath;
CGMutablePathRef  mutablePath = CGPathCreateMutableCopy(cgPath);
 
// Modify the path and assign it back to the UIBezierPath object
CGPathAddEllipseInRect(mutablePath, NULL, CGRectMake(50, 50, 200, 200));
aPath.CGPath = mutablePath;
 
// Release both the mutable copy of the path.
CGPathRelease(mutablePath);
 
8.rendering(渲染)Bezier Path对象的内容。
   当创建一个UIBezierPath对象之后,我们可以使用它的stroke和fill方法在current graphics context中去渲染它。在调用这些方法之前,我们要进行一些其他的任务去确保正确的绘制path。
   使用UIColor类的方法去stroke和fill想要的颜色。
   设置形状在目标视图中的位置。如果我们创建的path相对于原点(0,0),则我们可以给current drawing context应用一个适当的affie transform。例如,我想drawing一个形状起始点在(0,0),我可以调用函数CGContextTranslateCTM,并指定水平和垂直方向的translation值为10。调整graphic context相对于调整path对象的points是首选的方法,因为我们可以很容易的保存和撤销先前的graphics state。
    更新path对象的drawing 属性。当渲染path时,UIBezierPath实例的drawing属性会覆盖graphics context下的属性值。
 
   下面的代码实现了在一个自定义view中实现drawRect:方法中去绘制一个椭圆。椭圆边框矩形的左上角位于视图坐标系统的点(50,50)处。

  Drawing a path in a view

- (void)drawRect:(CGRect)rect
{
    // Create an oval shape to draw.
    UIBezierPath* aPath = [UIBezierPath bezierPathWithOvalInRect:
                                CGRectMake(0, 0, 200, 100)];
 
    // Set the render colors
    [[UIColor blackColor] setStroke];
    [[UIColor redColor] setFill];
 
    CGContextRef aRef = UIGraphicsGetCurrentContext();
 
    // If you have content to draw after the shape,
    // save the current state before changing the transform
    //CGContextSaveGState(aRef);
 
    // Adjust the view's origin temporarily. The oval is
    // now drawn relative to the new origin point.
    CGContextTranslateCTM(aRef, 50, 50);
 
    // Adjust the drawing options as needed.
    aPath.lineWidth = 5;
 
    // Fill the path before stroking it so that the fill
    // color does not obscure the stroked line.
    [aPath fill];
    [aPath stroke];
 
    // Restore the graphics state before drawing any other content.
    //CGContextRestoreGState(aRef);
}

 

 

 

 

 

  • 大小: 11 KB
  • 大小: 9.2 KB
  • 大小: 18.1 KB
  • 大小: 9.4 KB
  • 大小: 22 KB
  • 大小: 22 KB
  • 大小: 6.9 KB
  • 大小: 15.8 KB
  • 大小: 7.8 KB
分享到:
评论

相关推荐

    iOS UIBezierPath绘制饼状图

    在iOS开发中,UIBezierPath是一个非常重要的图形绘制类,用于创建自定义的矢量图形。在这个场景中,我们利用UIBezierPath来绘制饼状图,这是一种常见的数据可视化方式,可以直观地展示各项数据的比例关系。饼状图由...

    快速上手IOS UIBezierPath(贝塞尔曲线)

    UIBezierPath是苹果iOS SDK中用于绘制矢量图形的核心类,它建立在Core Graphics框架之上,对CGPathRef进行封装,提供了更加便捷和面向对象的方法来创建和操作复杂的图形路径。由于UIBezierPath依赖于图形上下文...

    UIBezierPath画图

    在iOS开发中,UIBezierPath是一个非常重要的图形绘制类,它允许开发者自定义形状并进行绘制,从而实现复杂的图形界面效果。本篇文章将深入探讨UIBezierPath的基本使用,包括创建路径、添加路径元素、设置线条属性...

    利用UIBezierPath和CAShapeLayer实现的镂空及遮罩效果。

    首先,UIBezierPath是UIKit框架中的一个类,它允许我们创建自定义的矢量图形路径。通过一系列的点、线和曲线连接,我们可以绘制出任意形状,如圆形、矩形、多边形甚至是自由曲线。UIBezierPath提供了丰富的API,如`...

    iOS-UIBezierPath精讲

    UIBezierPath是iOS开发中用于绘制矢量图形的重要类,它是Core Graphics框架的一部分,提供了丰富的功能来创建和编辑复杂的路径。在iOS应用中,UIBezierPath常与CAShapeLayer配合使用,以实现高效且流畅的图形绘制。 ...

    ios-UIBezierPath画出爱心。还有很多其他动画。.zip

    在iOS开发中,UIBezierPath是一个非常重要的工具,它允许开发者通过代码绘制复杂的形状和路径。在这个名为"ios-UIBezierPath画出爱心。还有很多其他动画。.zip"的资源包中,我们可以看到一个名为"BabyPigAnimation...

    iOS使用UIBezierPath实现ProgressView

    使用UIBezierPath实现ProgressView实现的效果如下: 界面采用UITableView和TabelViewCell的实现,红色的视图采用UIBezierPath绘制.注意红色的部分左上角,左下角是直角哟!!!!不多说<这里才是用UIBezierPath实现的...

    Tibezier:Titanium 的 iOS UIBezierPath 包装器

    Titanium 的 iOS UIBezierPath 包装器。安装Git 克隆存储库,解压缩guy.mcdooooo.tibezier-iphone-1.0.0.zip包并将modules/iphone/guy.mcdooooo.tibezier放入项目的modules/iphone文件夹中。 要从 JavaScript 访问此...

    iOS利用UIBezierPath + CAAnimation实现路径动画效果

    上次给大家介绍了iOS利用UIBezierPath + CAAnimation实现路径动画效果的相关内容,今天实现一个根据心跳路径实现一个路径动画,让某一视图沿着路径进行运动.。 效果图如下: 核心代码 1-首先通过 drawRect 绘制心形...

    ios-iOS统计图表绘制(UITableView,UIBezierPath).zip

    这个项目“ios-iOS统计图表绘制(UITableView,UIBezierPath)”提供了一种方法来实现自定义的数据图表绘制,利用UITableView和UIBezierPath这两种iOS SDK中的核心组件。这里我们将深入探讨这两个技术以及如何结合...

    UIBezierPath

    在iOS开发中,UIBezierPath是一个非常重要的类,它属于UIKit框架,主要用于绘制矢量图形和路径。UIBezierPath是Core Graphics(也称为Quartz 2D)的一部分,允许开发者创建自定义形状,进行复杂的绘图操作,以及与...

    swift-IOS绘制编辑多边形基于UIBezierPath

    UIBezierPath是UIKit框架中的一个核心类,它允许我们精确地控制线条、曲线和其他图形的路径。 首先,UIBezierPath是Core Graphics框架的一部分,它与Quartz 2D一起工作,提供低级别的绘图功能。创建多边形的基本...

    iOS 利用贝塞尔曲线实现的圆环进度指示器

    在iOS中,我们可以使用`UIBezierPath`类来创建和操作贝塞尔曲线。这个类提供了各种方法,如`move(to:)`、`addLine(to:)`、`addCurve(to:controlPoint1:controlPoint2:)`等,用于绘制直线、曲线以及更复杂的路径。 ...

    IOS按照路径裁切图片

    在iOS开发中,裁切图片是一项常见的任务,特别是在创建...通过以上介绍,我们可以了解到在iOS中按照路径裁切图片的基本原理和实现方法。在实际开发中,开发者可以根据需求灵活运用这些技术,创造出丰富的用户体验。

    ios-利用UIBezierPath实现加入购物车动画.zip

    GitHub:https://github.com/Mr-yuwei/YeeObjcProject/tree/master/YeeShopCarObjcProject 简书https://www.jianshu.com/p/64edd11db99e 利用UIBezierPath实现加入购物车动画

    UIBezierPath-Symbol:[已弃用] UIBezierPath类的符号扩展(UIBezierPath类别)

    在iOS开发中,UIBezierPath是一个非常重要的图形绘制类,它允许开发者创建和操作自定义的矢量图形路径。在给定的标题和描述中提到的"UIBezierPath-Symbol"是一个类别(Category),它是对UIBezierPath原生功能的扩展...

    swift-iOS贝塞尔曲线UIBezierPathShapeLayer绘制五角星

    UIBezierPath是苹果iOS SDK中用于创建和操作矢量路径的类,而ShapeLayer则是一个可以显示这些路径的CALayer子类,它可以高效地渲染无边框的几何形状。 首先,我们需要了解贝塞尔曲线的基本概念。贝塞尔曲线是一种...

    UIBezierPath和CAShapeLayer绘图

    UIBezierPath类允许你在自定义的View中绘制和渲染由直线和曲线组成的路径。你可以在初始化的时候,直接为你的UIBezierPath指定一个几何图形。 路径可以是简单的几何图形例如: 矩形、椭圆、弧线之类的,也可以是相对...

Global site tag (gtag.js) - Google Analytics