Obscure a UITextField password

harsh_017 picture harsh_017 · Jul 5, 2011 · Viewed 64.9k times · Source

I am doing a login page. I have UITextField for password.

Obviously, I do not want the password to be seen; instead, I want circles to show when typing. How do you set the field for this to happen?

Answer

Mehul Mistri picture Mehul Mistri · Jul 5, 2011

Please set your UItextField property secure..

Try this..

textFieldSecure.secureTextEntry = true

textFieldSecure is your UITextField...