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?
Please set your UItextField property secure..
Try this..
textFieldSecure.secureTextEntry = true
textFieldSecure is your UITextField...
One can do this for Obscure a UITextField password:
CODE
Objective-C:
textField.secureTextEntry = YES;
Swift:
textField.isSecureTextEntry = true
In Interface Builder check the "Secure Text Entry" checkbox
or
In code set:
Objective-C:
yourTextField.secureTextEntry = YES;
Swift:
yourTextField.secureTextEntry = true
Set the secureTextEntry
property to YES
.
Open the Xib file and open the inspector of the password text field and tick the secure property.
For Swift 3.0:
txtpassword.isSecureTextEntry = true
in Swift 3.0 or later
passwordTextField.isSecureTextEntry = true
txt_Password = new UITextField {
Frame = new RectangleF (20,40,180,31),
BorderStyle = UITextBorderStyle.Bezel,
TextColor = UIColor.Black,
SecureTextEntry = true,
Font = UIFont.SystemFontOfSize (17f),
Placeholder = "Enter Password",
BackgroundColor = UIColor.White,
AutocorrectionType = UITextAutocorrectionType.No,
KeyboardType = UIKeyboardType.Default,
ReturnKeyType = UIReturnKeyType.Done,
ClearButtonMode = UITextFieldViewMode.WhileEditing,
};
secureTextEntry set true.