UITextField setVisible?

ios, objective-c, uitextfield, visible

Solution

I think you are looking for:

myTextField.hidden = NO;

Problem

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

Original source