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

How can I change the dots to another character on password field in iOS Swift(如何在 iOS Swift 中将密码字段上的点更改为另一个字符)

本文介绍了如何在 iOS Swift 中将密码字段上的点更改为另一个字符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

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个选项:

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

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

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
}

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

这篇关于如何在 iOS Swift 中将密码字段上的点更改为另一个字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:如何在 iOS Swift 中将密码字段上的点更改为另一个字符

基础教程推荐