黑马程序员技术交流社区
标题:
我想做一个 渐变的线条, 谁知怎么做
[打印本页]
作者:
zrtalent
时间:
2014-9-25 14:11
标题:
我想做一个 渐变的线条, 谁知怎么做
//画线
[[UIColor orangeColor] set];
//获取图像环境的句柄
CGContextRef currentContext = UIGraphicsGetCurrentContext();
//设置线的宽度
CGContextSetLineWidth(currentContext, 1.0f);
//设置线的起点
CGContextMoveToPoint(currentContext, gx, gy);
//设置线的终点
CGContextAddLineToPoint(currentContext, ex,ey);
// //在调用CGContextaddLineTopoint过程指定了线终点之后,它会将笔留在它绘制终点,可以继续画线
// CGContextAddLineToPoint(currentContext, 300.0f, 200.0f);
//创建你的路径,这个过程使用图形环境的当前设置颜色来绘制路径
CGContextStrokePath(currentContext);
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2