美文网首页
IOS画虚线

IOS画虚线

作者: oneDemo | 来源:发表于2015-08-04 17:16 被阅读220次

UIImageView*imageView1 = [[UIImageViewalloc]initWithFrame:CGRectMake(0,100,320,20)];

[self.viewaddSubview:imageView1];

UIGraphicsBeginImageContext(imageView1.frame.size);//开始画线

[imageView1.imagedrawInRect:CGRectMake(0,0, imageView1.frame.size.width, imageView1.frame.size.height)];

CGContextSetLineCap(UIGraphicsGetCurrentContext(),kCGLineCapRound);//设置线条终点形状

CGFloatlengths[] = {10,5};

CGContextRefline =UIGraphicsGetCurrentContext();

CGContextSetStrokeColorWithColor(line, [UIColorredColor].CGColor);

CGContextSetLineDash(line,0, lengths,2);//画虚线

CGContextMoveToPoint(line,0.0,20.0);//开始画线

CGContextAddLineToPoint(line,310.0,20.0);

CGContextStrokePath(line);

imageView1.image=UIGraphicsGetImageFromCurrentImageContext();

相关文章

  • iOS 画虚线

    通过Quartz2D画虚线

  • iOS 画虚线

    创建一个UIView的子类,在drawRect:(CGRect)rect里

  • iOS 画虚线

    在所需要的view上画一条虚线,重写下面的方法即可 -(void)drawRect:(CGRect)rect{ [...

  • IOS画虚线

    UIImageView*imageView1 = [[UIImageViewalloc]initWithFrame...

  • ios画虚线

    项目中用到了自己画的虚线,记录一下:

  • iOS 画虚线

    其中的一个方法 /***画虚线@param lineView 视图@param lineLength 单个虚线大小...

  • iOS 画虚线

    效果图

  • iOS 画线

    1.iOS画虚线边框layer.border 2.iOS画小于1px的细线 3.iOS 设置行距,并且计算有行距的...

  • iOS画虚线 画实线

    // 画虚线- (void)drawRect:(CGRect)rect { CAShapeLayer *dott...

  • ios-画虚线

    需求: 需要实现虚线功能 实现方法: 方法一:使用贝塞尔曲线实现 方法二:Quartz 2D绘制

网友评论

      本文标题:IOS画虚线

      本文链接:https://www.haomeiwen.com/subject/lgbvqttx.html