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画虚线边框的主要内容,如果未能解决你的问题,请参考以下文章

iOS 动画虚线矩形边框

swift - 画图 - 画矩形,虚线,圆和半圆

WPF中如何在文本外面加虚线外框

UIView有圆角和投影?

UIView bounds.applying 但有旋转

尝试为 UITableViewCell 绘制虚线边框