Toggling UITextField to show and hide in Swift
Use this to set when you want the UITextField
hidden or visible depending on your application structure
You can do it this way to make the field visible:
myTextField.isHidden = false
and this way to make it hidden:
myTextField.isHidden = true