我的應用程序有2個視圖控制器,名爲Accueil和菜單在故事板中調用Main 我點擊一個按鈕放置在繼續,打印「進入此處」但它不會更改視圖控制器...爲什麼?請幫我爲什麼我不能更改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")
}