首页 > 其他 > 详细

绘制三角形矩形

时间:2015-03-31 23:53:13      阅读:248      评论:0      收藏:0      [点我收藏+]
 /**绘制三角形*/
    CGContextRef contextRef=UIGraphicsGetCurrentContext();
    CGContextMoveToPoint(contextRef, 100, 100);
    CGContextAddLineToPoint(contextRef, 100, 200);
    CGContextAddLineToPoint(contextRef, 200, 200);
    
    CGContextMoveToPoint(contextRef, 100, 100);
    CGContextAddLineToPoint(contextRef, 200, 200);
    CGContextSetStrokeColorWithColor(contextRef, [UIColor redColor].CGColor);
    CGContextStrokePath(contextRef);
    
     
    /**绘制矩形*/
    CGContextRef contextRef=UIGraphicsGetCurrentContext();
    CGContextAddRect(contextRef, CGRectMake(50, 100, 200, 200));
    CGContextSetRGBFillColor(contextRef, 1, 0, 0, 1.0);
    CGContextFillPath(contextRef);
    
    /**绘制矩形*/
    CGContextMoveToPoint(contextRef, 100, 100);
    CGContextAddLineToPoint(contextRef, 200, 100);
    CGContextMoveToPoint(contextRef, 100, 100);
    CGContextAddLineToPoint(contextRef, 100, 200);
    CGContextMoveToPoint(contextRef, 100, 200);
    CGContextAddLineToPoint(contextRef, 200, 200);
    CGContextMoveToPoint(contextRef, 200, 100);
    CGContextAddLineToPoint(contextRef, 200, 200);
    CGContextStrokePath(contextRef);
    

 

绘制三角形矩形

原文:http://www.cnblogs.com/thbbsky/p/4382187.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!