这是我的故事板:
在某些特定情况下,我想自动从我的ScanTable(TableViewController)切换回我的StartPage。所以我添加了以下代码,在两个视图之间切换:
let startPage:UIViewController = UIStoryboard(name: "Main", bundle: nil).instantiateViewControllerWithIdentifier("StartPage")
self.presentViewController(startPage, animated: true, completion: nil)
所以这段代码有效,但有两个问题:
答案 0 :(得分:0)
尝试使用
self.navigationController?.pushViewController(yourViewController, animated: true)
转到您想要显示的yourViewController。
或
self.navigationController?.popToRootViewControllerAnimated(true)
如果你需要回到你的第一个VC。
答案 1 :(得分:0)
您可以在appdelegate文件上设置一些属性。
一个例子:
$HOME