gpt4 book ai didi

ios - 如何在 UILabel 中显示替代密码字符?

转载 作者:可可西里 更新时间:2023-11-01 03:02:00 32 4
gpt4 key购买 nike

我需要显示包含用户帐户凭据的 UITableView。为此,我在 UITableViewCell 中使用了 UILabels。当我显示他们的密码时,我显然希望只显示一个占位符密码字符而不是他们的实际密码,类似于设置为安全文本输入模式的 UITextField。事实上,我想使用与 UITextField 相同的字符,而不是“*”。

我的问题是,当 UITextField 处于安全模式时,密码字符的字符代码是什么?

最佳答案

这里有一种方法可以做到这一点,例如,在原型(prototype)单元格的 detailTextLabel 中“点出”密码:

// self.password is your password string
NSMutableString *dottedPassword = [NSMutableString new];

for (int i = 0; i < [self.password length]; i++)
{
[dottedPassword appendString:@"●"]; // BLACK CIRCLE Unicode: U+25CF, UTF-8: E2 97 8F
}

cell.detailTextLabel.text = dottedPassword;

关于ios - 如何在 UILabel 中显示替代密码字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/83687/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com