Obscure a UITextField password
One can do this for Obscure a UITextField password:
CODE
Objective-C:
textField.secureTextEntry = YES;
Swift:
textField.isSecureTextEntry = true
Please set your UItextField property secure..
Try this..
textFieldSecure.secureTextEntry = true
textFieldSecure is your UITextField...
For newer Swift version, it is textFieldSecure.isSecureTextEntry = true