LoginSignup
101
109

More than 5 years have passed since last update.

【Swift3】コードで画面遷移を行う方法

Last updated at Posted at 2016-10-12

同じストーリーボードのビューに遷移する場合

ストーリーボードで遷移先のビューを選択し、IdentityのStoryboard IDに任意の名前を設定。
withIdentifier: ""に設定した名前を入れる。

let storyboard: UIStoryboard = self.storyboard!
let nextView = storyboard.instantiateViewController(withIdentifier: "nextView")
present(nextView, animated: true, completion: nil)

NavigationContorollerの場合

let storyboard: UIStoryboard = self.storyboard!
let nextView = storyboard.instantiateViewController(withIdentifier: "nextView")
let navi = UINavigationController(rootViewController: nextView)
// アニメーションの設定
// navi.modalTransitionStyle = .coverVertical
present(navi, animated: true, completion: nil)

異なるストーリーボードのビューに遷移する場合

遷移先のビューの「Is Initial View Controller」にチェックを入れておく。
name: ""に遷移先のストーリーボードの名前を設定。

let storyboard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
let nextView = storyboard.instantiateInitialViewController()
present(nextView!, animated: true, completion: nil)
101
109
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
101
109