码迷,mamicode.com
首页 > 其他好文 > 详细

绘制圆形椭圆

时间:2015-04-01 00:05:54      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

/**绘制圆形*/
    CGContextRef contextRef=UIGraphicsGetCurrentContext();
    CGContextAddArc(contextRef, 150, 300, 100, 0, 3.14*2, 0);
    CGContextStrokePath(contextRef);
    
    /**绘制椭圆*/
    CGContextAddEllipseInRect(contextRef, CGRectMake(50, 400, 200, 100));
    CGContextStrokePath(contextRef);

 

绘制圆形椭圆

标签:

原文地址:http://www.cnblogs.com/thbbsky/p/4382264.html

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