【Swift3】コードで画面遷移を行う方法
同じストーリーボードのビューに遷移する場合
ストーリーボードで遷移先のビューを選択し、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)
Author And Source
この問題について(【Swift3】コードで画面遷移を行う方法), 我々は、より多くの情報をここで見つけました https://qiita.com/Simmon/items/6c3d6bcd6bfffbfd970d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .