Search code examples
objective-ciosuitextfieldvisible

UITextField setVisible?


I'm trying to set a UITextField visible or not but I can't find it in the doc. How to do it ?

I would like to use something like :

[myTextField setVisible:YES];

Thanks for your advices


Solution

  • I think you are looking for:

    myTextField.hidden = NO;