ログインページを作成しています。パスワードにUITextFieldがあります。
明らかに、パスワードを見せたくないのです。代わりに、入力時に円を表示する必要があります。これを実現するには、どのようにフィールドを設定しますか?
UItextFieldプロパティを安全に設定してください。
これを試して..
textFieldSecure.secureTextEntry = true
textFieldSecureはUITextFieldです...
UITextFieldパスワードを隠すためにこれを行うことができます:
CODE
目的C:
textField.secureTextEntry = YES;
スイフト:
textField.isSecureTextEntry = true
Interface Builderで「Secure Text Entry」チェックボックスをチェックします
または
コードセット:
目的C:
yourTextField.secureTextEntry = YES;
スイフト:
yourTextField.secureTextEntry = true
secureTextEntry
プロパティをYES
に設定します。
Xibファイルを開き、パスワードテキストフィールドのインスペクターを開いて、セキュアプロパティにチェックマークを付けます。
For Swift 3.0:
txtpassword.isSecureTextEntry = true
in Swift 3.0以降
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はtrueに設定されます。