1
Swift 3.0で以下のコードを使用しないでください。私はシミュレータ上に空白の画面を表示します。何が起こっているのか分かりません。スウィフトで線を描く3.0
import UIKit
class DrawExample: UIView {
override func draw(_ rect: CGRect) {
let context = UIGraphicsGetCurrentContext()
context!.setLineWidth(3.0)
context!.setStrokeColor(UIColor.purple.cgColor)
//make and invisible path first then we fill it in
context!.move(to: CGPoint(x: 50, y: 60))
context!.addLine(to: CGPoint(x: 250, y:320))
context!.strokePath()
}
[スウィフト3で線を引く方法](https://stackoverflow.com/questions/40556112/how-to-draw-a-line-in-swift-3)の可能性の重複 – Krunal