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

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
Dropbox Files.download does not start when number of files in folder is gt; 1000(当文件夹中的文件数为1000时,Dropbox Files.Download不会启动)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)