Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 735
Rob Avatar asked Jun 11 '12 14:06

Rob


1 Answers

I think you are looking for:

myTextField.hidden = NO;
like image 62
WhoaItsAFactorial Avatar answered Oct 31 '22 18:10

WhoaItsAFactorial