UIView画虚线边框
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UIView画虚线边框相关的知识,希望对你有一定的参考价值。
//fatherView加虚线边框 -(void)boundingRectangleForView:(UIView *)fatherView{ CAShapeLayer *borderLayer = [CAShapeLayer layer]; borderLayer.fillColor = [UIColor clearColor].CGColor; borderLayer.strokeColor = [UIColor nvColorWith666].CGColor; borderLayer.path = [UIBezierPath bezierPathWithRect:fatherView.bounds].CGPath; borderLayer.lineWidth = 1.f; borderLayer.lineCap = @"square"; borderLayer.lineDashPattern = @[@6, @2]; [fatherView.layer addSublayer:borderLayer]; }
以上是关于UIView画虚线边框的主要内容,如果未能解决你的问题,请参考以下文章