我试试'在我正在进行的项目中使用Swift切换View Controllers。我希望它在ViewController之间切换 - > SecondViewController。所以我将这些代码放入ViewController.Swift而不是放入SecondViewController。
let homeViewController = self.storyboard?.instantiateViewControllerWithIdentifier("SecondController") as! SecondViewController
self.navigationController?.pushViewController(SecondViewController(), animated: true)
我得到一个帖子1:信号SIGABRT。
如果我必须将我的代码放入SecondViewController,我会把它放在哪里?
答案 0 :(得分:0)
这样做。
void Eval(string expr1, map<char, double> & mapVars1)
您的所有视图控制器都在导航控制器容器中吗?