隐藏 UITextField 密码
我正在做一个登录页面。我有 UITextField 作为密码。
显然,我不希望密码被看到;相反,我希望在打字时显示圆圈。 您如何设置实现这一目标的环境?
I am doing a login page. I have UITextField for password.
Obviously, I do not want the password to be seen; instead, I want circles to show when typing.
How do you set the field for this to happen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
请将您的 UItextField 属性设置为安全..
试试这个..
textFieldSecure 是您的 UITextField...
对于较新的 Swift 版本,它是
textFieldSecure.isSecureTextEntry = true
Please set your UItextField property secure..
Try this..
textFieldSecure is your UITextField...
For newer Swift version, it is
textFieldSecure.isSecureTextEntry = true
可以这样做来隐藏 UITextField 密码:
代码
目标-C:
斯威夫特:
One can do this for Obscure a UITextField password:
CODE
Objective-C:
Swift:
在 Interface Builder 中选中“安全文本输入”复选框
或
在代码集中:
Objective-C:
Swift:
In Interface Builder check the "Secure Text Entry" checkbox
or
In code set:
Objective-C:
Swift:
将
secureTextEntry
属性设置为YES
。Set the
secureTextEntry
property toYES
.打开Xib文件并打开密码文本字段的检查器并勾选安全属性。
Open the Xib file and open the inspector of the password text field and tick the secure property.
对于 Swift 3.0:
For Swift 3.0:
Swift 3.0 或更高版本
in Swift 3.0 or later
只需选中情节提要上的
安全文本输入
复选框Simply check
Secure Text Entry
check box on the storyboardsecureTextEntry 设置为 true。
secureTextEntry set true.