これはなに
Segueを使わずにコードで NextViewController
という名前のControllerへの遷移を想定する。
フルスクリーンで遷移する。
遷移
ViewController.swift
let storyboard = UIStoryboard(name: "NextViewController", bundle: nil)
let vc = storyboard.instantiateViewController(identifier: "NextViewController")
vc.modalPresentationStyle = .fullScreen
self.present(vc,animated: true)
一応
【Swift】モーダル遷移かつNavigationBarも表示させたいかつフルスクリーンで表示させたい
https://qiita.com/antk/items/e8bccccfad08a61fb140
閉じる
フルスクリーンなのでモーダルを下げる取っ手が無いためどこかに閉じるボタンを作る。
ViewController.swift
self.dismiss(animated: true, completion: nil)
おわり(´・ω・`)