A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© zrtalent 高级黑马   /  2014-9-25 14:11  /  1198 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

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

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马