
いまいち役に立たないInterface Builderくんが役に立ってくれました。
ちなみにここではGraphViewというクラスを作り、そのプロパティにUIBezierPath
を持たせています。
GraphView.swift
class GraphView: UIView {
...
var graph: UIBezierPath!
GraphView.swift
required init?(coder aDecoder: NSCoder) {
graph = UIBezierPath()
super.init(coder: aDecoder)
}
というか、最初から透明にしてくれればいいのに?
ブログ書いてます:http://weed.nagoya