@import url(/css/cuteeditor.css);
@import url(/css/cuteeditor.css);
@import url(http://i.cnblogs.com/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/css/cuteeditor.css);

视图可以通过子视图、图层或实现drawRect:方法来表现内容,如果说实现了drawRect:方法,那么最好就不要混用其他方法了,如图层和子视图。自定义绘图大部分是由UIKit或者Core Graphics来实现的。现在我们来讲讲UIBezierPath和Core Graphics。

1.UIBezierPath

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

1.绘制矩形

绘制矩形最简单的办法是使用UIRectFrame和UIRectFill,如下

  1. - (void)drawRect:(CGRect)rect
  2. {
  3. [[UIColor redColor]setFill];
  4. UIRectFill(CGRectMake(20, 20, 100, 50));
  5. }

其中UIColor setFill是设置画笔颜色。

通过使用UIBezierPath可以自定义绘制线条的粗细,是否圆角等。

  1. - (void)drawRect:(CGRect)rect
  2. {
  3. UIColor *color = [UIColor colorWithRed:0 green:0 blue:0.7 alpha:1];
  4. [color set]; //设置线条颜色
  5. UIBezierPath* aPath = [UIBezierPath bezierPathWithRect:CGRectMake(20, 20, 100, 50)];
  6. aPath.lineWidth = 8.0;
  7. aPath.lineCapStyle = kCGLineCapRound; //线条拐角
  8. aPath.lineJoinStyle = kCGLineCapRound; //终点处理
  9. [aPath stroke];
  10. }

效果如下:

2.圆和椭圆

只有将上面代码中的:

  1. UIBezierPath* aPath = [UIBezierPath bezierPathWithRect:CGRectMake(20, 20, 100, 50)];

替代为以下代码即可绘制一个圆形

  1. UIBezierPath* aPath = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(20, 20, 100, 100)];

椭圆:

  1. UIBezierPath* aPath = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(20, 20, 100, 50)];

3.多边形

多边形是一些简单的形状,这些形状是由一些直线线条组成,我们可以用moveToPoint: 和 addLineToPoint:方法去构建。moveToPoint:设置我们想要创建形状的起点。从这点开始,我们可以用方法addLineToPoint:去创建一个形状的线段。
我们可以连续的创建line,每一个line的起点都是先前的终点,终点就是指定的点。
closePath可以在最后一个点和第一个点之间画一条线段。

  1. - (void)drawRect:(CGRect)rect
  2. {
  3. UIColor *color = [UIColor colorWithRed:0 green:0.7 blue:0 alpha:1];
  4. [color set];
  5. UIBezierPath* aPath = [UIBezierPath bezierPath];
  6. aPath.lineWidth = 5.0;
  7. aPath.lineCapStyle = kCGLineCapRound;
  8. aPath.lineJoinStyle = kCGLineCapRound;
  9. // 起点
  10. [aPath moveToPoint:CGPointMake(100.0, 0.0)];
  11. // 绘制线条
  12. [aPath addLineToPoint:CGPointMake(200.0, 40.0)];
  13. [aPath addLineToPoint:CGPointMake(160, 140)];
  14. [aPath addLineToPoint:CGPointMake(40.0, 140)];
  15. [aPath addLineToPoint:CGPointMake(0.0, 40.0)];
  16. [aPath closePath];//第五条线通过调用closePath方法得到的
  17. //根据坐标点连线
  18. [aPath stroke];
  19. [aPath fill];
  20. }

效果如下:

4.不规则形状

想画弧线组成的不规则形状,我们需要使用中心点、弧度和半径,如下图。弧度使用顺时针脚底,0弧度指向右边,pi/2指向下方,pi指向左边,-pi/2指向上方。然后使用bezierPathWithArcCenter: radius: startAngle endAngle: clockwise:方法来绘制。

1).绘制一段弧度

  1. - (void)drawRect:(CGRect)rect
  2. {
  3. UIColor *color = [UIColor redColor];
  4. [color set]; //设置线条颜色
  5. UIBezierPath* aPath = [UIBezierPath bezierPathWithArcCenter:CGPointMake(80, 80)
  6. radius:75
  7. startAngle:0
  8. endAngle:DEGREES_TO_RADIANS(135)
  9. clockwise:YES];
  10. aPath.lineWidth = 5.0;
  11. aPath.lineCapStyle = kCGLineCapRound; //线条拐角
  12. aPath.lineJoinStyle = kCGLineCapRound; //终点处理
  13. [aPath stroke];
  14. }

结果如下:

2).两种贝塞尔曲线

a).第一种:

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

效果如下:

b).第二种:

  1. - (void)drawRect:(CGRect)rect
  2. {
  3. UIColor *color = [UIColor redColor];
  4. [color set]; //设置线条颜色
  5. UIBezierPath* aPath = [UIBezierPath bezierPath];
  6. aPath.lineWidth = 5.0;
  7. aPath.lineCapStyle = kCGLineCapRound; //线条拐角
  8. aPath.lineJoinStyle = kCGLineCapRound; //终点处理
  9. [aPath moveToPoint:CGPointMake(5, 80)];
  10. [aPath addCurveToPoint:CGPointMake(155, 80) controlPoint1:CGPointMake(80, 0) controlPoint2:CGPointMake(110, 100)];
  11. [aPath stroke];
  12. }

3).曲线组合:

下面我们来画一朵花:

  1. - (void)drawRect:(CGRect)rect {
  2. CGSize size = self.bounds.size;
  3. CGFloat margin = 10;
  4. //rintf:四舍五入函数
  5. CGFloat radius = rintf(MIN(size.height - margin, size.width - margin) / 4);
  6. CGFloat xOffset, yOffset;
  7. CGFloat offset = rintf((size.height - size.width) / 2);
  8. if (offset > 0) {
  9. xOffset = (CGFloat)rint(margin / 2);
  10. yOffset = offset;
  11. } else {
  12. xOffset = -offset;
  13. yOffset = rintf(margin / 2);
  14. }
  15. [[UIColor redColor] setFill];
  16. UIBezierPath *path = [UIBezierPath bezierPath];
  17. [path addArcWithCenter:CGPointMake(radius * 2 + xOffset, radius + yOffset)
  18. radius:radius
  19. startAngle:(CGFloat)-M_PI
  20. endAngle:0
  21. clockwise:YES];
  22. [path addArcWithCenter:CGPointMake(radius * 3 + xOffset, radius * 2 + yOffset)
  23. radius:radius
  24. startAngle:(CGFloat)-M_PI_2
  25. endAngle:(CGFloat)M_PI_2
  26. clockwise:YES];
  27. [path addArcWithCenter:CGPointMake(radius * 2 + xOffset, radius * 3 + yOffset)
  28. radius:radius
  29. startAngle:0
  30. endAngle:(CGFloat)M_PI
  31. clockwise:YES];
  32. [path addArcWithCenter:CGPointMake(radius + xOffset, radius * 2 + yOffset)
  33. radius:radius
  34. startAngle:(CGFloat)M_PI_2
  35. endAngle:(CGFloat)-M_PI_2
  36. clockwise:YES];
  37. [path closePath];
  38. [path fill];
  39. }
  1. 记得调用以下这个方法,使其view变化后(例如横屏了)重新调用drawRect
  2. - (void)awakeFromNib 
  3. {
  4. // Comment this line to see default behavior
  5. self.contentMode = UIViewContentModeRedraw;
  6. }

@import url(http://i.cnblogs.com/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/css/cuteeditor.css);

UIBezierPath(转)的更多相关文章

  1. 使用UIBezierPath绘制图形

    当需要画图时我们一般创建一个UIView子类, 重写其中的drawRect方法 再drawRect方法中利用UIBezierPath添加画图 UIBezierPath的使用方法: (1)创建一个Bez ...

  2. 贝塞尔曲线(UIBezierPath)属性、方法汇总

    UIBezierPath主要用来绘制矢量图形,它是基于Core Graphics对CGPathRef数据类型和path绘图属性的一个封装,所以是需要图形上下文的(CGContextRef),所以一般U ...

  3. 贝赛尔曲线UIBezierPath(后续)

    使用CAShapeLayer与UIBezierPath可以实现不在view的drawRect方法中就画出一些想要的图形 . 1:UIBezierPath: UIBezierPath是在 UIKit 中 ...

  4. 贝赛尔曲线UIBezierPath

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

  5. Swift - UIBezierPath

    使用UIBezierPath可以创建基于矢量的路径.使用此类可以定义简单的形状,如椭圆.矩形或者有多个直线和曲线段组成的形状等.主要用到的该类的属性包括 moveToPoint: //设置起始点 ad ...

  6. IOS Animation-CAShapeLayer、UIBezierPath与Animation的结合

    在阅读本文之前,对CAShapeLayer.UIBezierPath不熟悉的话,可以先阅读文章 贝塞尔曲线与Layer 如果对动画不熟悉的话,先阅读文章 动画基础.深入 Layer是绘图的画板,Bez ...

  7. iOS关于CAShapeLayer与UIBezierPath的知识内容

    使用CAShapeLayer与UIBezierPath可以实现不在view的drawRect方法中就画出一些想要的图形 . 1:UIBezierPath: UIBezierPath是在 UIKit 中 ...

  8. iOS - 用 UIBezierPath 实现果冻效果

    最近在网上看到一个很酷的下拉刷新效果(http://iostuts.io/2015/10/17/elastic-bounce-using-uibezierpath-and-pan-gesture/). ...

  9. UIBezierPath 的使用

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

  10. UIBezierPath类 笔记

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

随机推荐

  1. react 生命周期详解

    state有时候很不听话,在某些时候,我不想他渲染,偏偏react非常智能的帮我们重复渲染. 比如最常见的就是传递的对象为空,组件依旧渲染了一次或者多次. 更多场景不举例了,对症下药. shouldC ...

  2. 不要使用 reader.Peek() 去读取每行数据

    1.问题描述 使用SteamRead的Peek()和ReadLine()来读取流中的数据,如果数据行数太多,会读取不完整(后面有些数据就读不出来了). 比如: while (srResponseRea ...

  3. python--导入就方便实现你需要的功能(模块)

    模块让你能够有逻辑地组织你的Python代码段. 把相关的代码分配到一个 模块里能让你的代码更好用,更易懂. 模块也是Python对象,具有随机的名字属性用来绑定或引用. 简单地说,模块就是一个保存了 ...

  4. 让网站永久拥有HTTPS - 申请免费SSL证书并自动续期

    https://blog.csdn.net/xs18952904/article/details/79262646 https://freessl.org/

  5. cmake ccmake

    下载libqrencode源码编译过程 git clone https://github.com/fukuchi/libqrencode.git 2001  mkdir build 2002  cd ...

  6. MySql_ procedure

    返回参数示例 下面是一个示例: delimiter //S drop procedure if EXISTS myzrz; CREATE PROCEDURE myzrz(in pin int,out ...

  7. Django的安装使用,以及建立本地网站

    一.安装Django pip install django 完成后即可 二.pycharm 建立django 点击file ——>new project 选择django项目——>more ...

  8. C 标准库 - <float.h>

    C 标准库 - <float.h> 简介 C 标准库的 float.h 头文件包含了一组与浮点值相关的依赖于平台的常量.这些常量是由 ANSI C 提出的,这让程序更具有可移植性.在讲解这 ...

  9. 数据库 ""和null的在java 持久化中的区别

    如果查找的时候查找了dealerCarType中a字段,但是数据库中a字段为"",那么持久化结果dealerCarType.getA() 结果为""; 如果查找 ...

  10. weblogic的几点配置

    2.在tomcat下写过滤器以后还有的地方需要手工转码<-->weglobic下也不用 eg:SubjectAction.java3.weblogic下anltr.jar有冲突,需要从外界 ...