如何在 iOS Swift 中将密码字段上的点更改为另一个字符字段、中将、字符、密码

2023-09-08 08:41:24 作者:給我閉嘴

我有一个文本字段,我想在密码隐藏时将默认点字符替换为其他字符.有什么方法可以轻松做到这一点?

I have a Text Field and I would like to replace the default dot character to something else when the password is hidden. Is there any way to do this easily?

推荐答案

这里有2个选项:

使用没有安全输入选项的普通文本字段.当用户输入一个字符时,将其保存到一个字符串变量中,然后在文本字段中将其替换为您希望显示的字符而不是项目符号.

这是代码(将密码显示为 $$$$):

Here's the code (will show the password as $$$$):

var password: String = ""
func textField(textField: UITextField, shouldChangeCharactersInRange range: NSRange, replacementString string: String) -> Bool
{
    password = password+string
    textField.text = textField.text+"$"
    println("(password)")
    return false
}

在此处查看答案:UITextField secureTextEntry 带有自定义字体的项目符号?