SwiftUIの基本を身につけたい方はこちら

【Xcode/Swift】画面遷移チートシート

コードのみで遷移

modal遷移

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
let vc = self.storyboard?.instantiateViewController(withIdentifier: "toNext") as! NextViewController
self.present(vc, animated: true)
let vc = self.storyboard?.instantiateViewController(withIdentifier: "toNext") as! NextViewController self.present(vc, animated: true)
let vc = self.storyboard?.instantiateViewController(withIdentifier: "toNext") as! NextViewController
self.present(vc, animated: true)

push遷移

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
let vc = self.storyboard?.instantiateViewController(withIdentifier: "toNext") as! NextViewController
self.navigationController?.pushViewController(vc, animated: true)
let vc = self.storyboard?.instantiateViewController(withIdentifier: "toNext") as! NextViewController self.navigationController?.pushViewController(vc, animated: true)
let vc = self.storyboard?.instantiateViewController(withIdentifier: "toNext") as! NextViewController
self.navigationController?.pushViewController(vc, animated: true)

コードのみで異なるStoryboardに遷移

push遷移

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
let storyboard = UIStoryboard(name: "Storyboardのファイル名", bundle: nil)
let vc = storyboard.instantiateViewController(withIdentifier: "ボードのID") as! ボードに紐づくViewController
self.navigationController?.pushViewController(vc, animated: true)
let storyboard = UIStoryboard(name: "Storyboardのファイル名", bundle: nil) let vc = storyboard.instantiateViewController(withIdentifier: "ボードのID") as! ボードに紐づくViewController self.navigationController?.pushViewController(vc, animated: true)
let storyboard = UIStoryboard(name: "Storyboardのファイル名", bundle: nil)
let vc = storyboard.instantiateViewController(withIdentifier: "ボードのID") as! ボードに紐づくViewController
self.navigationController?.pushViewController(vc, animated: true)

modal遷移

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
let storyboard = UIStoryboard(name: "Storyboardのファイル名", bundle: nil)
let vc = storyboard.instantiateViewController(withIdentifier: "ボードのID") as! ボードに紐づくViewController
self.present(vc, animated: true)
let storyboard = UIStoryboard(name: "Storyboardのファイル名", bundle: nil) let vc = storyboard.instantiateViewController(withIdentifier: "ボードのID") as! ボードに紐づくViewController self.present(vc, animated: true)
let storyboard = UIStoryboard(name: "Storyboardのファイル名", bundle: nil)
let vc = storyboard.instantiateViewController(withIdentifier: "ボードのID") as! ボードに紐づくViewController
self.present(vc, animated: true)

コードで前の画面に戻る

modal遷移

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
dismiss(animated: true)
dismiss(animated: true)
dismiss(animated: true)

push遷移

一つ戻る

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
self.navigationController?.popViewController(animated: true)
self.navigationController?.popViewController(animated: true)
self.navigationController?.popViewController(animated: true)

一番最初に戻る

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
self.navigationController?.popToRootViewController(animated: true)
self.navigationController?.popToRootViewController(animated: true)
self.navigationController?.popToRootViewController(animated: true)

評価