extension UIView{
//MARK:- 绘制虚线
func drawDashLine(_ lineView:UIView,strokeColor: UIColor, lineWidth: CGFloat = 1, lineLength: Int = 10, lineSpacing: Int = 5) {
let shapeLayer = CAShapeLayer()
shapeLayer.bounds = lineView.bounds
shapeLayer.anchorPoint = CGPoint(x: 0, y: 0)
shapeLayer.fillColor = UIColor.blue.cgColor
shapeLayer.strokeColor = strokeColor.cgColor
shapeLayer.lineWidth = lineWidth
shapeLayer.lineJoin = CAShapeLayerLineJoin.round
//每一段虚线长度 和 每两段虚线之间的间隔
shapeLayer.lineDashPattern = [NSNumber(value: lineLength), NSNumber(value: lineSpacing)]
let path = CGMutablePath()
// let y = lineView.layer.bounds.height - lineWidth
let x = lineView.layer.bounds.width - lineWidth
path.move(to: CGPoint(x: x, y: 0))
path.addLine(to: CGPoint(x: x, y: lineView.layer.bounds.height))
shapeLayer.path = path
lineView.layer.addSublayer(shapeLayer)
}
}
Swift绘制虚线
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
推荐阅读更多精彩内容
- 已完成章节索引 用Swift写围棋App-00序用Swift写围棋App-01准备工作用Swift写围棋App-0...