Home > database >  How to Pass the data given in UITextField to another variable on another class
How to Pass the data given in UITextField to another variable on another class

Time:02-11

So i have a UITextField named apiTextField and a function of the saveButton :

func saveButton(_ sender: Any) { } I want when the user writes to the UITextField and press the saveButton that text the user wrote be passed to a variable which is called var baseURL:String? in another class.

I didn't find anything related to UITextField so i decided to make this question, another similar one is 10 years old!.

CodePudding user response:

var anotherClass = AnotherClass()

func saveButton(_ sender: Any) { 
    guard let text = apiTextField.text, !text.isEmpty else { return }
    anotherClass.baseURL = text
}

Is that what you are looking for?

  • Related