码迷,mamicode.com
首页 > 移动开发 > 详细

ios绘图基本图形之圆弧

时间:2016-01-22 17:15:31      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

 1    // 画圆弧
 2     // 1.获取上下文
 3     CGContextRef ctx = UIGraphicsGetCurrentContext();
 4     // 2.画圆弧
 5     // x/y 圆心
 6     // radius 半径
 7     // startAngle 开始的弧度
 8     // endAngle 结束的弧度
 9     // clockwise 画圆弧的方向 (0 顺时针, 1 逆时针)
10     //    CGContextAddArc(ctx, 100, 100, 50, -M_PI_2, M_PI_2, 0);
11     CGContextAddArc(ctx, 100, 100, 50, M_PI_2, M_PI, 0);
12     CGContextClosePath(ctx);
13     
14     // 3.渲染
15     //     CGContextStrokePath(ctx);
16     CGContextFillPath(ctx);

 

ios绘图基本图形之圆弧

标签:

原文地址:http://www.cnblogs.com/PJHome/p/5151385.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!