我的观点中有导航控制器。
在我的View Controller中有一个带有开关的didSelectRowAtIndexPath
方法。在第一个单元格中,我想打开我的新视图“Empresa”,我使用它:
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let vc = storyboard.instantiateViewControllerWithIdentifier("Empresa")
self.presentViewController(vc, animated: true, completion: nil)
工作,但不是apear导航控制器。像这样查看apear:
答案 0 :(得分:5)
在这个地方
self.presentViewController(vc, animated: true, completion: nil)
使用
self.navigationController?.pushViewController(vc, animated: true)
<强>更新强>
let vc = self.storyboard?.instantiateViewControllerWithIdentifier("Empresa") as yourviewcontrollerName
self.navigationController?.pushViewController(vc, animated: true)