标签:
// 1.获取上下文 CGContextRef ctx = UIGraphicsGetCurrentContext(); // 2.画饼状图 // 画线 CGContextMoveToPoint(ctx, 100, 100); CGContextAddLineToPoint(ctx, 100, 150); // 画圆弧 CGContextAddArc(ctx, 100, 100, 50, M_PI_2, M_PI, 0); // CGContextAddArc(ctx, 100, 100, 50, -M_PI, M_PI_2, 1); // 关闭路径 CGContextClosePath(ctx); // 3.渲染 (注意, 画线只能通过空心来画) CGContextFillPath(ctx); // CGContextStrokePath(ctx);
标签:
原文地址:http://www.cnblogs.com/PJHome/p/5151398.html