iOS 绘制虚线的三种方法

  • 方法一:通过Quartz 2D 在 UIView drawRect:方法进行绘制虚线

- (void)drawRect:(CGRect)rect {// 可以通过 setNeedsDisplay方法调用 drawRect:

                                // Drawing code

    

    CGContextRef context =UIGraphicsGetCurrentContext();

        // 设置线条的样式

    CGContextSetLineCap(context,kCGLineCapRound);

        // 绘制线的宽度

    CGContextSetLineWidth(context,3.0);

        // 线的颜色

    CGContextSetStrokeColorWithColor(context, [UIColororangeColor].CGColor);

        // 开始绘制

    CGContextBeginPath(context);

        // 设置虚线绘制起点

    CGContextMoveToPoint(context,10.0, 20.0);

        // lengths的值{10,10}表示先绘制10个点,再跳过10个点,如此反复

    CGFloat lengths[] = {10,10};

        // 虚线的起始点

    CGContextSetLineDash(context,0, lengths,2);

        // 绘制虚线的终点

    CGContextAddLineToPoint(context,310.0,20.0);

        // 绘制

    CGContextStrokePath(context);

        // 关闭图像

    CGContextClosePath(context);

    

}




  • 方法二:通过 Quartz 2D 在 UIImageView 绘制虚线

/**

 *  通过 Quartz 2D UIImageView绘制虚线

 *

 *  param imageView 传入要绘制成虚线的imageView

 *  return

 */



- (UIImage *)drawLineOfDashByImageView:(UIImageView *)imageView {

        // 开始划线 划线的frame

    CGRect frame = imageView.frame;

    

    UIGraphicsBeginImageContext(frame.size);

    

    [imageView.image drawInRect:CGRectMake(0, 0, frame.size.width, frame.size.height)];

    

        // 获取上下文

    CGContextRef line = UIGraphicsGetCurrentContext();

    

        // 设置线条终点的形状

    CGContextSetLineCap(line, kCGLineCapRound);

        // 设置虚线的长度 间距

    CGFloat lengths[] = {5,5};

    

    CGContextSetStrokeColorWithColor(line, [NSString colorWithHexString:@"#806F29"].CGColor);

        // 开始绘制虚线

    CGContextSetLineDash(line, 0, lengths, 2);

    

    CGContextMoveToPoint(line, 0.0, 2.0);

    

    CGContextAddLineToPoint(line, frame.size.width, frame.size.height);

    

    CGContextStrokePath(line);

    

        // UIGraphicsGetImageFromCurrentImageContext()返回的就是image

    return UIGraphicsGetImageFromCurrentImageContext();

}


  • 方法三:通过CAShapeLayer 方式绘制虚线

/**

 *  通过 CAShapeLayer方式绘制虚线

 *

 *  param lineView:       需要绘制成虚线的view

 *  param lineLength:     虚线的宽度

 *  param lineSpacing:    虚线的间距

 *  param lineColor:      虚线的颜色

 **/

- (void)drawLineOfDashByCAShapeLayer:(UIView *)lineView lineLength:(int)lineLength lineSpacing:(int)lineSpacing lineColor:(UIColor *)lineColor {

    CAShapeLayer *shapeLayer = [CAShapeLayerlayer];

    [shapeLayer setBounds:lineView.bounds];

    [shapeLayer setPosition:CGPointMake(CGRectGetWidth(lineView.frame) / 2, CGRectGetHeight(lineView.frame))];

    [shapeLayer setFillColor:[UIColorclearColor].CGColor];

        //  设置虚线颜色为blackColor

    [shapeLayer setStrokeColor:lineColor.CGColor];

        //  设置虚线宽度

    [shapeLayer setLineWidth:CGRectGetHeight(lineView.frame)];

    [shapeLayer setLineJoin:kCALineJoinRound];

        //  设置线宽,线间距

    [shapeLayer setLineDashPattern:[NSArrayarrayWithObjects:[NSNumbernumberWithInt:lineLength], [NSNumbernumberWithInt:lineSpacing],nil]];

        //  设置路径

    CGMutablePathRef path =CGPathCreateMutable();

    CGPathMoveToPoint(path,NULL, 0,0);

    CGPathAddLineToPoint(path,NULL,CGRectGetWidth(lineView.frame),0);

    [shapeLayer setPath:path];

    CGPathRelease(path);

        //  把绘制好的虚线添加上来

    [lineView.layeraddSublayer:shapeLayer];

}



你可能感兴趣的:(iOS,技术分享)