1.view のアウトレットを作成します
2.Identity Inspector (図右上矢印) で Class をコントローラのクラスに設定して紐付けます
3.Viewを表示する(Swift 3)
let view1 = SubViewController() self.present(view1, animated: true, completion: nil)
4.Viewを閉じる(Swift 3)
self.dismiss(animated: true, completion: nil)