如何在swift 3.0中将文本字段从一个类调用到另一个类

时间:2017-09-25 09:15:02

标签: ios swift swift3 protocols

我在一个班级中有一个文本字段的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
     }
   }
}

0 个答案:

没有答案