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

iOS 画线

时间:2014-09-24 20:16:57      阅读:358      评论:0      收藏:0      [点我收藏+]

标签:ios 画线   drawrect   

@interface ShowLineView : UIView

-(void)drawRect:(CGRect)rect{

    
CGContextRef context = UIGraphicsGetCurrentContext();
    
CGContextSetLineCap(context, kCGLineCapSquare);//设置线条样式
    
CGContextSetLineWidth(context, 0.2);    //设置线条粗细宽度
    
CGContextSetFillColorWithColor(context, [UIColor redColor].CGColor);   //设置颜色
    
CGContextBeginPath(context);    //开始一个起始路径
    
CGContextMoveToPoint(context, 1030);  //起始点设置为(0,0):注意这是上下文对应区域中的相对坐标,
    
CGContextAddLineToPoint(context, 30030); //设置下一个坐标点
    
CGContextStrokePath(context);  //连接上面定义的坐标点
}
-----------------
-(void)showLine{

    
ShowLineView *view = [[ShowLineView allocinitWithFrame:CGRectMake(030320100)];
    view.
backgroundColor = [UIColor cyanColor];
    [
self.view addSubview:view];

}


bubuko.com,布布扣


iOS 画线

标签:ios 画线   drawrect   

原文地址:http://blog.csdn.net/u010241322/article/details/39525393

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