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.
I think you are looking for:
myTextField.hidden = NO;