3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AutoLayoutに追従する図形を描く

Last updated at Posted at 2020-06-05

UIViewの contentModeredraw を設定すると、Viewのframeが変わった時にAutoLayoutを使用しても簡単に図形を再描画することができます。
以下のコードでは下向きの三角形が描画されます。

スクリーンショット 2020-06-05 19.41.06.png
import UIKit

final class TriangleView: UIView {
    override init(frame: CGRect) {
        super.init(frame: frame)
        contentMode = .redraw
    }

    required init?(coder: NSCoder) {
        super.init(coder: coder)
        contentMode = .redraw
    }

    override func draw(_ rect: CGRect) {
        let path = UIBezierPath()
        path.move(to: rect.origin)
        path.addLine(to: CGPoint(x: rect.maxX, y: rect.minY))
        path.addLine(to: CGPoint(x: rect.midX, y: rect.maxY))
        path.close()
        UIColor.gray.setFill()
        path.fill()
    }
}

let view = TriangleView(frame: .init(origin: .zero, size: .init(width: 50, height: 25)))
view.backgroundColor = .white

Playgroundだと以下のコードを追記するだけで簡単にUIを確認できて便利ですね。

import PlaygroundSupport
PlaygroundPage.current.liveView = view
3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?