カテゴリー
iOS Swift

Custom UIViewの最小テンプレート

class CustomUIView: UIView {	
  init() {
    super.init(frame: .zero)
    // any initialization comes here...
  }	
  required init?(coder: NSCoder) {
    fatalError("init(coder:) has not been implemented")
  }	
}