简书地址:http://www.jianshu.com/p/20d71da174e6
Github地址:https://github.com/Jvaeyhcd/HcdProcessView

《iOS球形波浪加载进度控件-HcdProcessView》这篇文章已经展示了我在项目中编写的一个球形进度加载控件HcdProcessView,这篇文章我要简单介绍一下我的制作过程。

思路

首先我放弃了使用通过改变图片的位置来实现上面的动画效果,虽然这样也可以实现如上的效果,但是从性能和资源消耗上来说都不是最好的选择。这里我采用了通过上下文(也就是CGContextRef)来绘制这样的效果,大家对它应该并不陌生,它既可以绘制直线、曲线、多边形圆形以及各种各样的几何图形。

具体步骤

我们可以将上面的复杂图形拆分成如下几步:
1. 绘制最外面的一圈刻度尺
2. 绘制表示进度的刻度尺
3. 绘制中间的球形加载界面

绘制刻度尺

如果你先要在控件中绘制自己想要的图形,你需要重写UIView的drawRect方法:

- (void)drawRect:(CGRect)rect
{CGContextRef context = UIGraphicsGetCurrentContext();[self drawScale:context];
}

drawRect方法中,我们先画出了刻度尺的图形,刻度尺是由一圈短线在一个圆内围成的一个圆。

/***  画比例尺**  @param context 全局context*/
- (void)drawScale:(CGContextRef)context {CGContextSetLineWidth(context, _scaleDivisionsWidth);//线的宽度//先将参照点移到控件中心CGContextTranslateCTM(context, fullRect.size.width / 2, fullRect.size.width / 2);//设置线的颜色CGContextSetStrokeColorWithColor(context, [UIColor colorWithRed:0.655 green:0.710 blue:0.859 alpha:1.00].CGColor);//线框颜色//绘制一些图形for (int i = 0; i < _scaleCount; i++) {CGContextMoveToPoint(context, scaleRect.size.width/2 - _scaleDivisionsLength, 0);CGContextAddLineToPoint(context, scaleRect.size.width/2, 0);//    CGContextScaleCTM(ctx, 0.5, 0.5);//渲染CGContextStrokePath(context);CGContextRotateCTM(context, 2 * M_PI / _scaleCount);}//绘制刻度尺外的一个圈CGContextSetStrokeColorWithColor(context, [UIColor colorWithRed:0.694 green:0.745 blue:0.867 alpha:1.00].CGColor);//线框颜色CGContextSetLineWidth(context, 0.5);CGContextAddArc (context, 0, 0, scaleRect.size.width/2 - _scaleDivisionsLength - 3, 0, M_PI* 2 , 0);CGContextStrokePath(context);//复原参照点CGContextTranslateCTM(context, -fullRect.size.width / 2, -fullRect.size.width / 2);
}

这里需要用到两个东西一个是CGContextAddArc,一个是CGContextAddLineToPoint。创建圆弧的方法有两种一种是CGContextAddArc,一种是CGContextAddArcToPoint,这里画的圆比较简单所以用的是CGContextAddArc,CGContextAddArcToPoint在后面也会用到(我会在用到的地方详解)。

CGContextAddArc

 void CGContextAddArc (CGContextRef c,    CGFloat x,             //圆心的x坐标CGFloat y,   //圆心的x坐标CGFloat radius,   //圆的半径 CGFloat startAngle,    //开始弧度CGFloat endAngle,   //结束弧度int clockwise          //0表示顺时针,1表示逆时针);

这里需要创建一个完整的圆,那么 开始弧度就是0 结束弧度是 2PI, 因为圆周长是 2*PI*radius。函数执行完后,current point就被重置为(x,y)。CGContextTranslateCTM(context, fullRect.size.width / 2, fullRect.size.width / 2);已经将current point移动到了(fullRect.size.width / 2, fullRect.size.width / 2)

CGContextAddLineToPoint

 void CGContextAddLineToPoint (CGContextRef c,CGFloat x,CGFloat y);

创建一条直线,从current point到 (x,y)
然后current point会变成(x,y)。
由于短线不连续,所以通过for循环来不断画短线,_scaleCount代表的是刻度尺的个数,每次循环先将current point移动到(scaleRect.size.width/2 - _scaleDivisionsLength, 0)点,_scaleDivisionsLength代表短线的长度。绘制完短线后将前面绘制完成的图形旋转一个刻度尺的角度CGContextRotateCTM(context, 2 * M_PI / _scaleCount);,将最终的绘制渲染后就得到了如下的刻度尺:

刻度尺上的进度绘制

首先在drawRect中添加drawProcessScale方法。

- (void)drawRect:(CGRect)rect
{CGContextRef context = UIGraphicsGetCurrentContext();[self drawScale:context];[self drawProcessScale:context];
}

然后在drawProcessScale方法中实现左右两部分的刻度尺进度绘制。

/***  比例尺进度**  @param context 全局context*/
- (void)drawProcessScale:(CGContextRef)context {CGContextSetLineWidth(context, _scaleDivisionsWidth);//线的宽度CGContextTranslateCTM(context, fullRect.size.width / 2, fullRect.size.width / 2);CGContextSetStrokeColorWithColor(context, [UIColor colorWithRed:0.969 green:0.937 blue:0.227 alpha:1.00].CGColor);//线框颜色int count = (_scaleCount / 2 + 1) * currentPercent;CGFloat scaleAngle = 2 * M_PI / _scaleCount;//绘制左边刻度进度for (int i = 0; i < count; i++) {CGContextMoveToPoint(context, 0, scaleRect.size.width/2 - _scaleDivisionsLength);CGContextAddLineToPoint(context, 0, scaleRect.size.width/2);//    CGContextScaleCTM(ctx, 0.5, 0.5);// 渲染CGContextStrokePath(context);CGContextRotateCTM(context, scaleAngle);}//绘制右边刻度进度CGContextRotateCTM(context, -count * scaleAngle);for (int i = 0; i < count; i++) {CGContextMoveToPoint(context, 0, scaleRect.size.width/2 - _scaleDivisionsLength);CGContextAddLineToPoint(context, 0, scaleRect.size.width/2);//    CGContextScaleCTM(ctx, 0.5, 0.5);// 渲染CGContextStrokePath(context);CGContextRotateCTM(context, -scaleAngle);}CGContextTranslateCTM(context, -fullRect.size.width / 2, -fullRect.size.width / 2);
}

绘制完后效果如下:

水的波浪效果绘制

终于到了最主要也是最难的效果绘制了,对于带有波浪不断滚动的效果是采用NSTimer来不断绘制每一帧图形实现的,现在简单介绍下每一帧的绘制方法。
首先在drawRect中添加drawWave方法,

- (void)drawRect:(CGRect)rect
{CGContextRef context = UIGraphicsGetCurrentContext();[self drawScale:context];[self drawProcessScale:context];[self drawWave:context];
}

drawWave中实现如下方法:

/***  画波浪**  @param context 全局context*/
- (void)drawWave:(CGContextRef)context {CGMutablePathRef frontPath = CGPathCreateMutable();CGMutablePathRef backPath = CGPathCreateMutable();//画水CGContextSetLineWidth(context, 1);CGContextSetFillColorWithColor(context, [_frontWaterColor CGColor]);CGFloat offset = _scaleMargin + _waveMargin + _scaleDivisionsWidth;float frontY = currentLinePointY;float backY = currentLinePointY;CGFloat radius = waveRect.size.width / 2;CGPoint frontStartPoint = CGPointMake(offset, currentLinePointY + offset);CGPoint frontEndPoint = CGPointMake(offset, currentLinePointY + offset);CGPoint backStartPoint = CGPointMake(offset, currentLinePointY + offset);CGPoint backEndPoint = CGPointMake(offset, currentLinePointY + offset);for(float x = 0; x <= waveRect.size.width; x++){//前浪绘制frontY = a * sin( x / 180 * M_PI + 4 * b / M_PI ) * amplitude + currentLinePointY;CGFloat frontCircleY = frontY;if (currentLinePointY < radius) {frontCircleY = radius - sqrt(pow(radius, 2) - pow((radius - x), 2));if (frontY < frontCircleY) {frontY = frontCircleY;}} else if (currentLinePointY > radius) {frontCircleY = radius + sqrt(pow(radius, 2) - pow((radius - x), 2));if (frontY > frontCircleY) {frontY = frontCircleY;}}if (fabs(0 - x) < 0.001) {frontStartPoint = CGPointMake(x + offset, frontY + offset);CGPathMoveToPoint(frontPath, NULL, frontStartPoint.x, frontStartPoint.y);}frontEndPoint = CGPointMake(x + offset, frontY + offset);CGPathAddLineToPoint(frontPath, nil, frontEndPoint.x, frontEndPoint.y);//后波浪绘制backY = a * cos( x / 180 * M_PI + 3 * b / M_PI ) * amplitude + currentLinePointY;CGFloat backCircleY = backY;if (currentLinePointY < radius) {backCircleY = radius - sqrt(pow(radius, 2) - pow((radius - x), 2));if (backY < backCircleY) {backY = backCircleY;}} else if (currentLinePointY > radius) {backCircleY = radius + sqrt(pow(radius, 2) - pow((radius - x), 2));if (backY > backCircleY) {backY = backCircleY;}}if (fabs(0 - x) < 0.001) {backStartPoint = CGPointMake(x + offset, backY + offset);CGPathMoveToPoint(backPath, NULL, backStartPoint.x, backStartPoint.y);}backEndPoint = CGPointMake(x + offset, backY + offset);CGPathAddLineToPoint(backPath, nil, backEndPoint.x, backEndPoint.y);}CGPoint centerPoint = CGPointMake(fullRect.size.width / 2, fullRect.size.height / 2);//绘制前浪圆弧CGFloat frontStart = [self calculateRotateDegree:centerPoint point:frontStartPoint];CGFloat frontEnd = [self calculateRotateDegree:centerPoint point:frontEndPoint];CGPathAddArc(frontPath, nil, centerPoint.x, centerPoint.y, waveRect.size.width / 2, frontEnd, frontStart, 0);CGContextAddPath(context, frontPath);CGContextFillPath(context);//推入CGContextSaveGState(context);CGContextDrawPath(context, kCGPathStroke);CGPathRelease(frontPath);//绘制后浪圆弧CGFloat backStart = [self calculateRotateDegree:centerPoint point:backStartPoint];CGFloat backEnd = [self calculateRotateDegree:centerPoint point:backEndPoint];CGPathAddArc(backPath, nil, centerPoint.x, centerPoint.y, waveRect.size.width / 2, backEnd, backStart, 0);CGContextSetFillColorWithColor(context, [_backWaterColor CGColor]);CGContextAddPath(context, backPath);CGContextFillPath(context);//推入CGContextSaveGState(context);CGContextDrawPath(context, kCGPathStroke);CGPathRelease(backPath);}

上面的代码较长,可能也比较难以理解。下面我将会对上述代码简单解读一下,已前浪为例(前浪和后浪的实现方式基本一样,只是两个浪正余弦函数不一样而已)。两个浪都是由一条曲线和和一个圆弧构成的封闭区间,曲线的x区间为[0, waveRect.size.width],y值坐标为frontY = a * sin( x / 180 * M_PI + 4 * b / M_PI ) * amplitude + currentLinePointY;(currentLinePointY为偏移量),通过for循环自增x,计算出y的位置来不断CGPathAddLineToPoint绘制出一条曲线,这就构成了波浪的曲线。然后我们需要根据波浪曲线的起始点和结束点以及圆心点(fullRect.size.width / 2, fullRect.size.height / 2),来绘制一段封闭的圆弧。
这里就需要用到CGPathAddArc方法;CGPathAddArc方法和CGContextAddArc类似。需要先计算出点波浪的起始点和结束点分别与圆心之间的夹角。知道两点计算夹角的方式如下:

/***  根据圆心点和圆上一个点计算角度**  @param centerPoint 圆心点*  @param point       圆上的一个点**  @return 角度*/
- (CGFloat)calculateRotateDegree:(CGPoint)centerPoint point:(CGPoint)point {CGFloat rotateDegree = asin(fabs(point.y - centerPoint.y) / (sqrt(pow(point.x - centerPoint.x, 2) + pow(point.y - centerPoint.y, 2))));//如果point纵坐标大于原点centerPoint纵坐标(在第一和第二象限)if (point.y > centerPoint.y) {//第一象限if (point.x >= centerPoint.x) {rotateDegree = rotateDegree;}//第二象限else {rotateDegree = M_PI - rotateDegree;}} else //第三和第四象限{if (point.x <= centerPoint.x) //第三象限,不做任何处理{rotateDegree = M_PI + rotateDegree;}else //第四象限{rotateDegree = 2 * M_PI - rotateDegree;}}return rotateDegree;
}

波浪绘制的相关判断

由于曲线x区间是[0, waveRect.size.width],y值是根据公式frontY = a * sin( x / 180 * M_PI + 4 * b / M_PI ) * amplitude + currentLinePointY;计算出来的,但是最终构成的波浪是一个球形的,所以对于计算出来的y值坐标,我们需要判断它是否在圆上,如果不在圆上,我们应该将它移到圆上。

判断分为两种情况:

currentLinePointY
currentLinePointY>fullRect.size.height / 2

同理当currentLinePointY>fullRect.size.height / 2时,已知点的坐标x,根据公式y1 = a * sin( x / 180 * M_PI + 4 * b / M_PI ) * amplitude + currentLinePointY;算出来的点位置为(x, y1),而在圆上点坐标为x的点的位置在(x,y2),如果y1>y2 则最终应该放到波浪上的点为 (x,y2)

其中判断的代码如下:

frontY = a * sin( x / 180 * M_PI + 4 * b / M_PI ) * amplitude + currentLinePointY;CGFloat frontCircleY = frontY;
if (currentLinePointY < radius) {frontCircleY = radius - sqrt(pow(radius, 2) - pow((radius - x), 2));if (frontY < frontCircleY) {frontY = frontCircleY;}
} else if (currentLinePointY > radius) {frontCircleY = radius + sqrt(pow(radius, 2) - pow((radius - x), 2));if (frontY > frontCircleY) {frontY = frontCircleY;}
}

其中当currentLinePointY < radius时,y2=radius - sqrt(pow(radius, 2) - pow((radius - x), 2));
currentLinePointY > radius时,y2=radius + sqrt(pow(radius, 2) - pow((radius - x), 2))

这样就构成了一个如下的效果:

然后通过Timer不断的改变ab的值就得到了我想要的动画效果。

CGContextRef绘图-iOS球形波浪加载进度控件-HcdProcessView详解 1相关推荐

  1. CGContextRef绘图-iOS球形波浪加载进度控件-HcdProcessView详解

    简书也有发布:http://www.jianshu.com/p/20d7... <iOS球形波浪加载进度控件-HcdProcessView>这篇文章已经展示了我在项目中编写的一个球形进度加 ...

  2. 动态加载用户控件的怪问题

    动态加载用户控件的时候,会因为调用一些控件的一些属性和方法而造成控件命名混乱. 因为add 一个用户控件或者 loadcontrol 的时候 如果没有指定控件的id,clientid,那么它会初始id ...

  3. python从date目录导入数据集_PyTorch加载自己的数据集实例详解

    数据预处理在解决深度学习问题的过程中,往往需要花费大量的时间和精力. 数据处理的质量对训练神经网络来说十分重要,良好的数据处理不仅会加速模型训练, 更会提高模型性能.为解决这一问题,PyTorch提供 ...

  4. asp.net读取用户控件,自定义加载用户控件

    1.自定义加载用户控件 ceshi.aspx页面 <html><body> <div id="divControls" runat="ser ...

  5. openlayers添加按钮_OpenLayers3加载常用控件使用方法详解

    本文实例为大家分享了OpenLayers3加载常用控件使用的具体代码,供大家参考,具体内容如下 1. 前言 地图控件就是对地图的缩放.全屏.坐标显示控件等,方便我们对地图进行操作.OpenLayers ...

  6. EasyUI加载树控件自动展开所有目录

    在这里如何加载树控件就不在熬述,在加载树控件后,树的节点全部展开,要在OnLoadSuccess事件中写代码: 转载于:https://www.cnblogs.com/luyuwei/p/528003 ...

  7. VB6.0动态加载ActiveX控件漫谈[转]

    [转帖]VB6.0动态加载ActiveX控件漫谈http://www.7880.com/Info/Article-4b559560.html 熟悉VB的朋友对使用ActiveX控件一定不会陌生,众多控 ...

  8. php 无法加载activex,IE怎么无法加载 Activex 控件?

    IE怎么无法加载 Activex 控件?很多小伙伴知道ActiveX 控件是一种可重用的软件组件,通过使用 ActiveX控件,可以很快地在网址.台式应用程序.以及开发工具中加入特殊的功能.下面,小编 ...

  9. php 无法加载activex,IE无法加载 Activex 控件的解决办法

    ActiveX 控件是一种可重用的软件组件,通过使用 ActiveX控件,可以很快地在网址.台式应用程序.以及开发工具中加入特殊的功能.如,StockTicker控件可以用来在网页上即时地加入活动信息 ...

  10. linux如何确定共享库路径,摘录Linux下动态共享库加载时的搜索路径详解

    对动态库的实际应用还不太熟悉的读者可能曾经遇到过类似"error while loading shared libraries"这样的错误,这是典型的因为需要的动态库不在动态链接器 ...

最新文章

  1. 服务器架设笔记——使用Apache插件解析简单请求
  2. 详解COOKIE和SESSION关系和区别
  3. maven的安装和环境配置的过程记录
  4. Python中字符串的截取,列表的截取
  5. 机器人水库涵洞检测_能给眼睛打针、可水下搜索救援,手术机器人水下机器人将亮相服贸会...
  6. 人的一生,有三件事情不能等
  7. html5点击显示展开列表,HTML5 - 如何折叠和展开复杂的表格元素
  8. Leetcode69场双周赛-第一题5960:标题首字母大写
  9. proj4经纬度bl转换xy_多种坐标系之间的转换之Proj.NET_转载
  10. Stream流综合练习
  11. android studio 虚拟机adb.exe已停止工作的处理
  12. oracle 10046详解,Oracle 10046事件详解
  13. JVM源码分析之Object.wait/notify(All)完全解读
  14. 在Vmware下linux与ARM开发板的NFS系统搭建【ZT】
  15. Python3的os.popen()与subprocess使用(关于数据处理)
  16. Unity 模拟两个小球位置变化,长度也动态变化
  17. SOAPUI安装破解
  18. 微信小程序开发者工具
  19. 猎豹网c 语言程序设计,[C/C++基础] 猎豹网校 C++ Primer初级/中级/高级合集发布 猎豹网校Primer视频教程...
  20. luogu1359 租用游艇

热门文章

  1. python flask后台框架_利用python实现后端写网页(flask框架)
  2. 卡尔曼滤波器:用R语言中的KFAS建模时间序列
  3. 多个激光雷达同时校准、定位和建图的框架
  4. word公式编辑器出错及交叉引用问题
  5. ligerui demo php,ligerui grid行编辑示例
  6. 锐捷AP组建无线网络-保姆级教程
  7. poi导出百万数据到excel,只在瞬息之间
  8. 静态小米官网首页仿站笔记
  9. matlab sil验证,科学网—径流模拟结果校准和验证图(matlab) - 张凌的博文
  10. 项目2胖子不想说体重