//画线
[[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);
|
|