私のアプリケーションには、メインと呼ばれるストーリーボードのAccueilとMenuという2つのView Controllerがあります。 accueilに配置されたボタンをクリックすると、ここに入力されますが、View Controllerは変更されません...なぜですか?私はあなたがあなたのストーリーボードにUINavigationController
を持っていない推測している私にViewControllerを変更できないのはなぜですか?
@IBAction func goTuMenu(sender: UIButton) {
let story = UIStoryboard.init(name: "Main", bundle: nil)
let menu = story.instantiateViewControllerWithIdentifier("Menu")
navigationController?.showViewController(menu, sender: self)
print("entered here")
}