StoryBoardsを使用してViewControllerを作成し、そのクラスをMyViewControllerに設定しました。プログラムでViewController内でNavigationControllerを使用
MyViewControllerは、UIViewControllerを継承し、いくつかのUI要素を持つクラスです。この要素の1つはUIButtonです。このボタンには、プログラムによってaddTargetとしてアクションを追加できます。
私はボタンが
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let newViewController = storyboard.instantiateViewController(withIdentifier: "newViewComtroller")
navigationController.pushViewController(newViewController, animated: true)
をクリックしかし、何も起こらないされたときにNavigationControllerでビューを変更したい - なぜですか?
ありがとうございました!私はそれを忘れてしまった!プログラムで実行できる方法はありますか? – moonvader