ログインページを作っています。パスワード用の UITextField があります。
明らかに、私はパスワードを見られたくありません。代わりに、入力時に円が表示されるようにします。これを実現するためのフィールドをどのように設定しますか?
UItextField プロパティをセキュアに設定してください。
これを試して..
textFieldSecure.secureTextEntry = true
textFieldSecure はあなたの UITextField です...
Interface Builder で、「Secure Text Entry」チェックボックスをオンにします。
また
コード セット:
目的 C:
yourTextField.secureTextEntry = YES;
迅速:
yourTextField.secureTextEntry = true
secureTextEntry
プロパティを に設定しますYES
。
Xib ファイルを開き、パスワード テキスト フィールドのインスペクターを開き、secure プロパティにチェックを入れます。
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 に設定されました。