我有2个视图控制器,应根据用户输入进行交换。因此,我想根据从文本文件获得的输入以编程方式切换视图。
Algorithm : if(input == 1) { Go to View Controller 1 } else if(input ==2) { Go to View Controller 2 }
关于如何以编程方式单击按钮或使用输入加载特定ViewController的任何帮助?
要以编程方式触发事件,您需要致电 sendActionsForControlEvent
sendActionsForControlEvent
button.sendActionsForControlEvents(.TouchUpInside)
-
迅捷3
button.sendActions(for: .touchUpInside)