ViewController实例如何链接到情节提要

时间:2020-06-06 03:38:26

标签: ios swift uiviewcontroller

我开始使用Xcode,Swift等进行iOS开发,我想知道import UIKit class ViewController: UIViewController { @IBOutlet weak var theButton: UIButton! @IBAction func buttonPressed(_ sender: UIButton) { print("The button was pressed") } } 类的实例与我的情节提要之间有多精确的链接。这是我的MRE:

ViewController

我猜测我的应用程序将在后台某处实例化buttonPressed,并将调用其各种方法,例如buttonPressed。但是,如果我假设创建类的两个单独的实例,并且用户按下了按钮,那么这两个实例是否都将调用其 <property> <name>hadoop.proxyuser.hbase.hosts</name> <value>*</value> </property> <property> <name>hadoop.proxyuser.hbase.groups</name> <value>*</value> </property> 方法?我会自己测试一下,但是我对这一切的工作方式还不了解。

1 个答案:

答案 0 :(得分:1)

在情节提要中,检查身份检查器,当您在其中设置类名时,ViewController将与情节提要链接,请查看下面的图片以了解

enter image description here

只要ViewController与情节提要中的任何场景链接,您都可以在该视图控制器中插入动作或插口

enter image description here