swift 查看に斜线を书く

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 查看に斜线を书く相关的知识,希望对你有一定的参考价值。

private func drawDiagonalLine(to view: UIView, frame: CGRect, color: UIColor) {
    let start = CGPoint(frame.origin.x + frame.width, frame.origin.y)
    let end = CGPoint(frame.origin.x, frame.origin.y + frame.height)
    let path = UIBezierPath()
    path.move(to: start)
    path.addLine(to: end)

    let shapeLayer = CAShapeLayer()
    shapeLayer.path = path.cgPath
    shapeLayer.strokeColor = color.cgColor
    shapeLayer.lineWidth = 1

    view.layer.addSublayer(shapeLayer)
}

以上是关于swift 查看に斜线を书く的主要内容,如果未能解决你的问题,请参考以下文章

python コメントを书く

html SVGを书く际のメモ

ruby ブロックを处理する关数を书く

golang 去言语でレーダーチャートを书く(途中)

html 【Javascript】指定の日付に表示内容を书き换える(2)〜一文のみを书き换える场合〜

html 【Javascript】指定の日付に表示内容を书き换える〜divをそっくり入れ替えたい场合〜