我在一个班级中有一个文本字段的IBOutlet,我想将该文本字段称为另一个类。
代码有点类似:
class destinationCreateAlertViewController{
@IBOutlet weak var addresstf: UITextField!
class dragging{
func 1(){
address = "mumbai"
adresstf.text = address // this reference of text Field is not getting called
}
}
}