一尘不染

如何以编程方式单击按钮?

python

我有2个视图控制器,应根据用户输入进行交换。因此,我想根据从文本文件获得的输入以编程方式切换视图。

Algorithm : 
if(input == 1)
{
    Go to View Controller 1
}
else if(input ==2)
{
    Go to View Controller 2 
}

关于如何以编程方式单击按钮或使用输入加载特定ViewController的任何帮助?


阅读 146

收藏
2021-01-20

共1个答案

一尘不染

要以编程方式触发事件,您需要致电 sendActionsForControlEvent

button.sendActionsForControlEvents(.TouchUpInside)

-

迅捷3

button.sendActions(for: .touchUpInside)
2021-01-20