UITextField setVisible?

I am trying to set the UITextField to visible or not, but I cannot find it in the document. How to do it?

I would like to use something like:

[myTextField setVisible:YES];

Thank you for your advice.

+5
source share
1 answer

I think you are looking for:

myTextField.hidden = NO;
+12
source

All Articles