web-dev-qa-db-ja.com

UITextFieldパスワードを隠す

ログインページを作成しています。パスワードにUITextFieldがあります。

明らかに、パスワードを見せたくないのです。代わりに、入力時に円を表示する必要があります。これを実現するには、どのようにフィールドを設定しますか?

156
harsh_017

UItextFieldプロパティを安全に設定してください。

これを試して..

textFieldSecure.secureTextEntry = true

textFieldSecureはUITextFieldです...

311
Mehul Mistri

UITextFieldパスワードを隠すためにこれを行うことができます:

enter image description here

CODE

目的C:

  textField.secureTextEntry = YES;

スイフト:

  textField.isSecureTextEntry = true 
80
Shekhar Gupta

Interface Builderで「Secure Text Entry」チェックボックスをチェックします

または

コードセット:

目的C:

yourTextField.secureTextEntry = YES;

スイフト:

yourTextField.secureTextEntry = true
37
iPrabu

secureTextEntryプロパティをYESに設定します。

11
jtbandes

Xibファイルを開き、パスワードテキストフィールドのインスペクターを開いて、セキュアプロパティにチェックマークを付けます。

8
PgmFreek

For Swift 3.0:

txtpassword.isSecureTextEntry = true
6
somnath

ストーリーボードのSecure Text Entryチェックボックスをオンにするだけです

enter image description here

3
Fangming

in Swift 3.0以降

passwordTextField.isSecureTextEntry = true
3
kishu mewara
    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に設定されます。

2
kiran