我真的很喜欢Xcode中故事板设计师的图形界面,因为所有的段落都是 用箭头显示。
但有时,当有更多复杂性(例如传递变量)时,我必须使用编程方式切换到另一个ViewController。
let storyBoard : UIStoryboard = UIStoryboard(name: "Main", bundle:nil)
let nextViewController = storyBoard.instantiateViewController(withIdentifier: "HomeViewController") as! HomeViewController
// pass variable
nextViewController.email = self.textfieldEmail.text!
self.present(nextViewController, animated:true, completion:nil)
我不喜欢,我的应用程序中的一些segue在故事板中用箭头显示,而更复杂的则不是。 有没有办法在Main.storyboard中用箭头显示那些更复杂的segue?
答案 0 :(得分:1)
有两种方法可以实现这一目标: