iPhone:如何减少号码。当在 UITextField 中输入文本时,依靠 UILabel

发布于 2024-10-08 20:33:45 字数 185 浏览 0 评论 0原文

当我在 UITextField 下方的 UITextField 上输入字符时,我放置了显示 200 的小 UILable,当在 UITextField 上输入字符 时,每个字符的计数必须减少 1并显示在 UILabel 上,你能建议我如何处理这个问题吗?

when i am typing characters on UITextField, below the UITextField, i place the small UILable displaying 200, when entering the characters on UITextField the count has to decrease by one for each character and displaying on UILabel, can you suggest me, how to work on this

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吹泡泡o 2024-10-15 20:33:45

在您的 textField 委托中:

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
    lblYourLabel.text = [NSString stringWithFormat:@"Characters: %d / 200",[textField.text length]];
    return YES;
}

In your textField delegate:

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
    lblYourLabel.text = [NSString stringWithFormat:@"Characters: %d / 200",[textField.text length]];
    return YES;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文